snake-cpp-game/main.cpp

9 lines
79 B
C++

#include "Game.h"
int main()
{
Game game;
game.run();
return 0;
}