10 lines
145 B
C++
10 lines
145 B
C++
|
/* Do basic initialization, get the loop going */
|
||
|
|
||
|
#include "gamecore.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
GameCore game_core;
|
||
|
return game_core.execute();
|
||
|
}
|