parse use input, add finish test screen

This commit is contained in:
Aidan Haas
2022-11-16 17:27:44 -05:00
committed by GitHub
parent b6fac567ee
commit d5cfab9c4c
5 changed files with 61 additions and 11 deletions
+2
View File
@@ -7,5 +7,7 @@
#define SUCCESS 1
#define FAILURE 0
char TIMED_MODES_STRING[5][MAX_STRING] = { "5s", "10s", "25s", "30s", "60s" };
int TIMED_MODES[5] = {5, 10, 25, 30, 60};
char WORD_MODES_STRING[5][MAX_STRING] = { "10", "25", "50", "100", "200" };
int WORD_MODES[5] = {10, 25, 50, 100, 200};
char MISC_STRING[3][MAX_STRING] = {"Exit", "Stats", "Settings"};