diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..b2ed6b9 --- /dev/null +++ b/main.cpp @@ -0,0 +1,12 @@ +#include "Snake.h" +#include "Game.h" + +int main() +{ + Game game; + game.Init(); + game.Run(); + game.Close(); + + return 0; +}