Uploading assets & developing multiplayer implementations

This commit is contained in:
2026-05-20 12:11:04 +03:00
parent 446d0ede8e
commit 67f5fcf374
19 changed files with 59 additions and 14 deletions
+1 -2
View File
@@ -7,6 +7,7 @@
// Game States & Configurations
enum class GameState {
MainMenu,
DifficultySelect,
Playing,
Paused,
GameOver
@@ -28,8 +29,6 @@ class GameObject {
public:
Vector2 position;
Color color;
public:
GameObject(Vector2 pos, Color c) : position(pos), color(c) {}
virtual ~GameObject() = default;