feat: add game visual and start gObserver

This commit is contained in:
2025-11-15 14:35:27 +01:00
parent 2bf123323d
commit 11c08f975b
6 changed files with 128 additions and 74 deletions

View File

@@ -1,9 +1,8 @@
#include <iostream>
#include "game.hpp"
#include "visual.hpp"
int main()
{
Game game {"hello world", 800, 600};
game.run();
Visual v("game", 800, 600);
v.run();
return 0;
}