1
0
Fork 0
mirror of https://github.com/HamletDuFromage/sigpatches-updater.git synced 2024-09-18 21:13:26 +01:00
sigpatches-updater/include/ui.hpp
2020-09-12 22:11:29 +02:00

14 lines
353 B
C++

#include <iostream>
#include <string>
#include <vector>
#include <switch.h>
#define VERSION "0.2"
#define WIDTH 80 // The width of the console
#define HEIGHT 45 // Height of the console
void displayList(std::vector<std::string> items, int cursor);
void viewHeader();
void viewHelp();
std::string prettifyString(const char * s, const char * modifier);