summaryrefslogtreecommitdiff
path: root/src/engine/objects/Object.h
diff options
context:
space:
mode:
authorMegaMech <MegaMech@users.noreply.github.com>2025-01-23 11:22:07 -0700
committerGitHub <noreply@github.com>2025-01-23 11:22:07 -0700
commit1f189dfa804a05177f99dda1044898eb63fdcb3f (patch)
tree598e0a6c26a5554afd1fcbcd801079fd1df090d3 /src/engine/objects/Object.h
parent24ecfc3db43bfa606f41c42ef8778f96b5047c6b (diff)
Game.cpp and World.cpp Cleanup (#159)
* Remove CProperties and delete dup Properties from World.h * Improvement * Fix compile * Cleanup * Document gRaceState * wip cleanup * compile * Impl PlayerBombKart * Rename CourseManager_ to CM_ * Finish renames m_ to CM_ * cleanup * Remove extra printf --------- Co-authored-by: MegaMech <7255464+MegaMech@users.noreply.github.com>
Diffstat (limited to 'src/engine/objects/Object.h')
-rw-r--r--src/engine/objects/Object.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/engine/objects/Object.h b/src/engine/objects/Object.h
index af2df81b5..c02deda23 100644
--- a/src/engine/objects/Object.h
+++ b/src/engine/objects/Object.h
@@ -20,7 +20,6 @@ public:
virtual void Tick();
virtual void Tick60fps();
virtual void Draw(s32 cameraId);
- virtual void Collision();
virtual void Expire();
virtual void Destroy(); // Mark object for deletion at the start of the next frame
};