feat: game class for managing the game and running it in main

This commit is contained in:
theoleuthardt 2025-03-13 10:55:41 +01:00
parent 9ff73a95e3
commit 6fd379cead
3 changed files with 137 additions and 3 deletions

View file

@ -1,6 +1,7 @@
#include <iostream>
#include "Game.hpp"
int main() {
std::cout << "Hello, World!" << std::endl;
Game game;
game.Run();
return 0;
}
}