1
0
mirror of https://github.com/krislamo/Trololo synced 2024-09-19 20:20:36 +00:00
Trololo/main.cpp

18 lines
269 B
C++
Raw Normal View History

#include "main.h"
2012-10-24 11:46:45 +00:00
using namespace std;
2012-10-24 11:46:45 +00:00
int main(int argc, char* args[])
{
SDL_Surface *screen;
// Display main menu
screen = scrns::MainMenu();
2013-01-14 02:21:15 +00:00
// Main menu keyboard surveying
screen = scrns::MainMenu_survey(screen);
SDL_FreeSurface(screen);
return 0;
2012-10-24 11:46:45 +00:00
}