snakeplusplus/src/main.cpp

9 lines
149 B
C++
Raw Normal View History

#include "gamestate.h"
2023-03-17 20:13:50 -05:00
int main(int argc, char *argv[])
{
2023-03-12 08:50:50 -05:00
GameState game;
2023-03-17 20:13:50 -05:00
game.SetGameSettings(argc, argv);
2023-03-12 08:50:50 -05:00
game.StartGame();
}