1
0
Fork 0
mirror of https://github.com/HamletDuFromage/sigpatches-updater.git synced 2024-11-08 13:11:55 +00:00
sigpatches-updater/include/ui.hpp

14 lines
353 B
C++
Raw Normal View History

2020-09-12 17:12:07 +01:00
#include <iostream>
#include <string>
#include <vector>
#include <switch.h>
2020-09-12 21:11:29 +01:00
#define VERSION "0.2"
2020-09-12 17:12:07 +01:00
#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);