9 lines
149 B
C++
Executable File
9 lines
149 B
C++
Executable File
#include "gamestate.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
GameState game;
|
|
game.SetGameSettings(argc, argv);
|
|
game.StartGame();
|
|
}
|