diff options
| author | MegaMech <inkstudios1@hotmail.com> | 2024-12-13 15:19:39 -0700 |
|---|---|---|
| committer | MegaMech <inkstudios1@hotmail.com> | 2024-12-13 15:19:39 -0700 |
| commit | 7f22f75db7fa7a1b2149bc953d2a159c52bc5e8b (patch) | |
| tree | 71cacfc66228dcd9f509fc2d7894689b426778b7 /src/engine/courses/TestCourse.cpp | |
| parent | 517a59fbf49a4d2bb59aefb10f2acfcdd17ff75e (diff) | |
Trophy, Object impl, and cleanup
Diffstat (limited to 'src/engine/courses/TestCourse.cpp')
| -rw-r--r-- | src/engine/courses/TestCourse.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/engine/courses/TestCourse.cpp b/src/engine/courses/TestCourse.cpp index 74f7fee13..2750c727f 100644 --- a/src/engine/courses/TestCourse.cpp +++ b/src/engine/courses/TestCourse.cpp @@ -13,6 +13,7 @@ #include "engine/actors/ATree.h" #include "engine/actors/ACloud.h" #include "engine/vehicles/Train.h" +#include "engine/objects/Trophy.h" extern "C" { #include "main.h" @@ -190,10 +191,12 @@ void TestCourse::SpawnActors() { Vec3f pos = {0, 80, 0}; //gWorldInstance.AddActor(new ACloud(pos)); - gWorldInstance.AddActor(new OSeagull(0, pos)); - gWorldInstance.AddActor(new OSeagull(1, pos)); - gWorldInstance.AddActor(new OSeagull(2, pos)); - gWorldInstance.AddActor(new OSeagull(3, pos)); + // gWorldInstance.AddActor(new OSeagull(0, pos)); + // gWorldInstance.AddActor(new OSeagull(1, pos)); + // gWorldInstance.AddActor(new OSeagull(2, pos)); + // gWorldInstance.AddActor(new OSeagull(3, pos)); + + gWorldInstance.AddObject(new OTrophy(FVector(0,0,0), OTrophy::TrophyType::GOLD, OTrophy::Behaviour::GO_FISH)); } // Likely sets minimap boundaries |
