This commit is contained in:
Bram Verhulst
2024-06-09 22:03:29 +02:00
parent d7389411f5
commit 5f1dcd5788
76 changed files with 1532 additions and 385 deletions

View File

@@ -11,6 +11,8 @@ public:
Level(const Level& other) = default;
Level(Level&& other) = default;
Level& operator=(const Level& other) = default;
Level& operator=(Level&& other) = default;
virtual void Update(float elapsedSec) = 0;
virtual void Draw() const = 0;