treewars/main.cpp

10 lines
145 B
C++
Raw Normal View History

/* Do basic initialization, get the loop going */
#include "gamecore.h"
int main()
{
GameCore game_core;
return game_core.execute();
}