Reformat + Basic animation system

General fixes
This commit is contained in:
Bram Verhulst
2024-04-01 10:27:37 +02:00
parent 3b9c96ea8d
commit 0f9bb76973
28 changed files with 918 additions and 546 deletions

View File

@@ -6,8 +6,11 @@ class Level
public:
Level();
Level(Camera* camera);
virtual ~Level();
virtual ~Level();
Level(const Level& other) = default;
Level(Level&& other) = default;
virtual void Update(float elapsedSec) = 0;
virtual void Draw() const = 0;
virtual void MouseMove(const Point2f& mousePos) = 0;