code re-organization

This commit is contained in:
Matteo Rosati
2026-01-25 09:27:50 +01:00
parent 3f3509bfea
commit 73b3407f04
9 changed files with 299 additions and 197 deletions

9
src/game.ts Normal file
View File

@@ -0,0 +1,9 @@
/**
* Game class for managing game state and logic
*/
class Game {
/**
* Starts the game
*/
public start = () => {};
}