summaryrefslogtreecommitdiff
path: root/src/engine/courses/Course.cpp
diff options
context:
space:
mode:
authorMegaMech <7255464+MegaMech@users.noreply.github.com>2024-11-24 15:38:57 -0700
committerMegaMech <7255464+MegaMech@users.noreply.github.com>2024-11-24 15:38:57 -0700
commitb7a637abacee267bd5f121439919f997a03113d8 (patch)
treee9acc6cd72b0d41f96a5b21a5e99c47858b72530 /src/engine/courses/Course.cpp
parent55fe8eb13d010699abaedd289c0377678c36072e (diff)
Fix freecam for custom courses
Diffstat (limited to 'src/engine/courses/Course.cpp')
-rw-r--r--src/engine/courses/Course.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/engine/courses/Course.cpp b/src/engine/courses/Course.cpp
index a3c107f1a..6cef03d6b 100644
--- a/src/engine/courses/Course.cpp
+++ b/src/engine/courses/Course.cpp
@@ -239,6 +239,10 @@ void Course::Collision() {}
void Course::ScrollingTextures() {}
void Course::DrawWater(struct UnkStruct_800DC5EC* screen, uint16_t pathCounter, uint16_t cameraRot, uint16_t playerDirection) {}
-void Course::Destroy() { }
+void Course::Destroy() {}
+
+bool Course::IsMod() {
+ return false;
+}
Course* currentCourse = nullptr;