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

10
src/Pong.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include "Pong.h"
CRAFT_INITIALIZE(PongWorld);
void PongWorld::Begin() {
World::Begin();
LOG("The PongWorld has BEGUN!");
}
void PongWorld::Tick(float deltaTime) { World::Tick(deltaTime); }