add multithread game logic. add tests. edit cmake

This commit is contained in:
2026-04-27 12:13:05 +02:00
parent 727caa7b90
commit 29868a704c
90 changed files with 19017 additions and 196 deletions
+2 -1
View File
@@ -1,13 +1,14 @@
#include "include/Game.h"
#include <exception>
#include <iostream>
int main () {
try {
Game game;
game.run();
return 0;
} catch ( const std::exception &e ) {
std::cerr << "Fatal Error: " << e.what() << "\n";
return 1;
}
return 0;
}