Reimpl Lakitu

This commit is contained in:
MegaMech
2024-12-28 00:25:41 -07:00
parent 135b51ea71
commit 8309225412
19 changed files with 1047 additions and 908 deletions
+5 -2
View File
@@ -13,8 +13,11 @@ extern "C" {
OObject::OObject() {}
// Virtual functions to be overridden by derived classes
void OObject::Tick() { }
void OObject::Tick() { }
void OObject::Tick60fps() {}
void OObject::Draw(s32 cameraId) { }
void OObject::Collision() {}
void OObject::Expire() { }
void OObject::Destroy() { }
void OObject::Destroy() {
PendingDestroy = true;
}