Create Main.cpp

This commit is contained in:
Mathias Wagner 2024-11-25 12:04:16 +01:00
parent 9f27fbee68
commit 5f85da51ea

9
Main.cpp Normal file
View File

@ -0,0 +1,9 @@
#include "Game.h"
using namespace std;
int main() {
Game game{};
game.run();
}