Initialize basic game

Signed-off-by: Daniel Henry <iamdanhenry@gmail.com>
This commit is contained in:
2025-09-06 19:50:25 -05:00
parent f9469a8978
commit 9414eb530d
6 changed files with 33 additions and 3 deletions

7
include/Pong.h Normal file
View File

@@ -0,0 +1,7 @@
#pragma once
#include <Craft.h>
class PongWorld : public craft::World {
void Begin() override;
void Tick(float deltaTime) override;
};