Add simple rectangles to represent the game

Signed-off-by: Daniel Henry <iamdanhenry@gmail.com>
This commit is contained in:
2025-09-06 20:44:49 -05:00
parent 9414eb530d
commit 5e922d5c8a
3 changed files with 17 additions and 2 deletions

View File

@@ -4,4 +4,5 @@
class PongWorld : public craft::World {
void Begin() override;
void Tick(float deltaTime) override;
void FixedTick() override;
};