Esempio n. 1
0
int main(int argc, char* argv[]) {
    if(argc > 1) {
        // TODO we should have cla's for testing purposes
    }

	// Creats the main menu to start the game
	MainMenu menu;
	
	// Displays main menu
	do    print_menu_clr("screen_main");
	while (!menu.get_input());

	return 0;
}