diff options
| author | MegaMech <7255464+MegaMech@users.noreply.github.com> | 2024-12-17 17:12:12 -0700 |
|---|---|---|
| committer | MegaMech <7255464+MegaMech@users.noreply.github.com> | 2024-12-17 17:12:12 -0700 |
| commit | 135b51ea719c6107663d9f54cc3e8cb7404dbda3 (patch) | |
| tree | 0fbcf721e8fafba631949fe1d3ef554cee1ef52f /src/engine/courses/TestCourse.cpp | |
| parent | 60014ec46695fb964a685d6a17d5fc63e02ab7b8 (diff) | |
Impl snowmen and trashbin
Diffstat (limited to 'src/engine/courses/TestCourse.cpp')
| -rw-r--r-- | src/engine/courses/TestCourse.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/engine/courses/TestCourse.cpp b/src/engine/courses/TestCourse.cpp index 465f97012..ce8d8ca62 100644 --- a/src/engine/courses/TestCourse.cpp +++ b/src/engine/courses/TestCourse.cpp @@ -6,6 +6,7 @@ #include "TestCourse.h" #include "World.h" #include "engine/actors/AFinishline.h" +#include "engine/objects/Object.h" #include "engine/objects/BombKart.h" #include "assets/mario_raceway_data.h" #include "assets/bowsers_castle_data.h" @@ -15,6 +16,8 @@ #include "engine/vehicles/Train.h" #include "engine/objects/Trophy.h" #include "engine/objects/CheepCheep.h" +#include "engine/objects/Snowman.h" +#include "engine/objects/TrashBin.h" extern "C" { #include "main.h" @@ -196,8 +199,10 @@ void TestCourse::SpawnActors() { // gWorldInstance.AddActor(new OSeagull(1, pos)); // gWorldInstance.AddActor(new OSeagull(2, pos)); // gWorldInstance.AddActor(new OSeagull(3, pos)); - gWorldInstance.AddObject(new OCheepCheep(FVector(0, 40, 0), OCheepCheep::CheepType::RACE, IPathSpan(0, 10))); - //gWorldInstance.AddObject(new OTrophy(FVector(0,0,0), OTrophy::TrophyType::GOLD, OTrophy::Behaviour::GO_FISH)); + // gWorldInstance.AddObject(new OCheepCheep(FVector(0, 40, 0), OCheepCheep::CheepType::RACE, IPathSpan(0, 10))); + // gWorldInstance.AddObject(new OTrophy(FVector(0,0,0), OTrophy::TrophyType::GOLD, OTrophy::Behaviour::GO_FISH)); + gWorldInstance.AddObject(new OSnowman(FVector(0, 0, 0))); + gWorldInstance.AddObject(new OTrashBin(FVector(0.0f, 0.0f, 0.0f), FRotation(0, 90, 0), 1.0f)); } // Likely sets minimap boundaries |
