1
0
Fork 0
mirror of https://github.com/HamletDuFromage/sigpatches-updater.git synced 2024-11-09 21:51:48 +00:00
sigpatches-updater/include/ui.hpp
2020-09-12 18:12:07 +02:00

14 lines
No EOL
353 B
C++

#include <iostream>
#include <string>
#include <vector>
#include <switch.h>
#define VERSION "0.1"
#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);