summaryrefslogtreecommitdiff
path: root/src/engine/courses/BombKart.cpp
diff options
context:
space:
mode:
authorMegaMech <MegaMech@users.noreply.github.com>2024-11-14 23:32:55 -0700
committerGitHub <noreply@github.com>2024-11-14 23:32:55 -0700
commit475f167bb2803999c5116bc285601d1f9a05d7de (patch)
tree859fec292c5c9807cc9690ebf4f0600f558b6063 /src/engine/courses/BombKart.cpp
parent4fbb031dd95f2a84e73fbca269f517e98808d293 (diff)
[modding] Big Update PR (#118)
* Implement kart vehicle * Fix menu CC * Actors * variable framerate * Implement Actors vector * Fix water & scrolling textures * Finish ACoin * Refactor finishline * Refactor mtx to vector * Fix refactored screen code bugs * Fix playlist bug * Switching courses working now * Fix podium ceremony * Mostly Fix Demo and Credits * Credits Load Actors and Textures * Fix credits * Formatting * Update lus and torch * Fix water features * Fix crabs * Combine function * Fix wheels * Add Moon Jump Cheat * Wheel Change * Fix smoke due to wheel change * Fix screens for wheels * Fix transparency * Fix staff ghost * Fix lakitu transition widescreen * Rename and export credits text * Fixes --------- Co-authored-by: MegaMech <7255464+MegaMech@users.noreply.github.com>
Diffstat (limited to 'src/engine/courses/BombKart.cpp')
-rw-r--r--src/engine/courses/BombKart.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/engine/courses/BombKart.cpp b/src/engine/courses/BombKart.cpp
deleted file mode 100644
index 1cbbd7477..000000000
--- a/src/engine/courses/BombKart.cpp
+++ /dev/null
@@ -1,28 +0,0 @@
-#include "BombKart.h"
-
-extern "C" {
- #include "bomb_kart.h"
-}
-
-/**
- * BombKarts derive their Y position from the waypoint Y value or 'spawn_actor_on_surface' function
- */
-
-OBombKart::OBombKart(uint16_t waypoint, uint16_t state, float unk_04, float x, float z, float unk_10, float unk_14) {}
-
-void OBombKart::Init() {
- // BombKarts.emplace_back(this);
- //BombKarts.push_back(BombKarts(waypoint, state, unk_04, x, z, unk_10, unk_14));
-}
-
-void OBombKart::Update() {
-
-}
-
-void OBombKart::Render() {
-
-}
-
-void OBombKart::Explode() {
-
-} \ No newline at end of file