From b2505fce2861c321ec9e4249bb6501179cd8ed12 Mon Sep 17 00:00:00 2001 From: pw6mfljci <2537107798@qq.com> Date: Mon, 17 Jun 2024 19:12:33 +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; +}