mirror of
https://github.com/krislamo/Trololo
synced 2024-11-10 00:30:35 +00:00
18 lines
269 B
C++
18 lines
269 B
C++
#include "main.h"
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char* args[])
|
|
{
|
|
SDL_Surface *screen;
|
|
|
|
// Display main menu
|
|
screen = scrns::MainMenu();
|
|
|
|
// Main menu keyboard surveying
|
|
screen = scrns::MainMenu_survey(screen);
|
|
|
|
SDL_FreeSurface(screen);
|
|
return 0;
|
|
}
|