22 lines
358 B
C
22 lines
358 B
C
#include <stdlib.h>
|
|
#include "include.h"
|
|
#include "main_menu.h"
|
|
|
|
int user_money = 0;
|
|
|
|
int held_pukekos = 0;
|
|
|
|
int main(int argc, char **argv) {
|
|
srand(time(NULL));
|
|
gfxInitDefault();
|
|
consoleInit(GFX_TOP, NULL);
|
|
|
|
//printf("\x1b[15;13HPress the start button to start...");
|
|
//waitForKey(KEY_START);
|
|
consoleClear();
|
|
|
|
print_main_menu();
|
|
|
|
return 0;
|
|
}
|