summaryrefslogtreecommitdiff
path: root/src/port/Game.cpp
diff options
context:
space:
mode:
authorMegaMech <MegaMech@users.noreply.github.com>2025-02-10 15:05:53 -0700
committerGitHub <noreply@github.com>2025-02-10 15:05:53 -0700
commit6a629fcaa946ea564e8348ead2ada6dbefd6c175 (patch)
treebc54da17ff8a94f974a1697f4387fda1ddf47e86 /src/port/Game.cpp
parenta6ecc276e947fbd4f720fe2714ce23e9216070e7 (diff)
Add Ship (#191)
* Compile works now * Update menus * Update CMakeLists.txt * Add Ship * Impl hm ship actors * Update HM course
Diffstat (limited to 'src/port/Game.cpp')
-rw-r--r--src/port/Game.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/port/Game.cpp b/src/port/Game.cpp
index f016aec39..35a0cdf83 100644
--- a/src/port/Game.cpp
+++ b/src/port/Game.cpp
@@ -26,6 +26,7 @@
#include "engine/courses/DoubleDeck.h"
#include "engine/courses/DKJungle.h"
#include "engine/courses/BigDonut.h"
+#include "engine/courses/Harbour.h"
#include "engine/courses/TestCourse.h"
#include "engine/actors/AFinishline.h"
@@ -83,6 +84,7 @@ DoubleDeck* gDoubleDeck;
DKJungle* gDkJungle;
BigDonut* gBigDonut;
PodiumCeremony* gPodiumCeremony;
+Harbour* gHarbour;
TestCourse* gTestCourse;
Cup* gMushroomCup;
@@ -118,6 +120,7 @@ void CustomEngineInit() {
gDkJungle = new DKJungle();
gBigDonut = new BigDonut();
gPodiumCeremony = new PodiumCeremony();
+ gHarbour = new Harbour();
gTestCourse = new TestCourse();
/* Add all courses to the global course list */
@@ -141,6 +144,7 @@ void CustomEngineInit() {
gWorldInstance.AddCourse(gDoubleDeck);
gWorldInstance.AddCourse(gDkJungle);
gWorldInstance.AddCourse(gBigDonut);
+ gWorldInstance.AddCourse(gHarbour);
gWorldInstance.AddCourse(gTestCourse);
gMushroomCup = new Cup("mk:mushroom_cup", "mushroom cup",