snakeplusplus/src/main.cpp

9 lines
106 B
C++
Raw Normal View History

#include "gamestate.hpp"
int main(void)
{
GameEngine game;
game.Start();
2023-08-18 18:09:09 -05:00
return 0;
}