From 7ee0235cc111cd840564b756eddb7b2a66a565a2 Mon Sep 17 00:00:00 2001 From: pw6mfljci <2537107798@qq.com> Date: Tue, 18 Jun 2024 21:52:54 +0800 Subject: [PATCH] ADD file via upload --- main.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 main.cpp 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; +}