diff options
| author | MegaMech <inkstudios1@hotmail.com> | 2024-12-29 21:37:06 -0700 |
|---|---|---|
| committer | MegaMech <inkstudios1@hotmail.com> | 2024-12-29 21:37:06 -0700 |
| commit | 08e4bf37979131e76e617beafb3f5ca6286e5ebb (patch) | |
| tree | 30f3b70de5987a2d4c32e9ab20da0f39bd6f48ae /src/engine/courses/TestCourse.cpp | |
| parent | 64b9dcbb30c5007466c14da7d78d081189810308 (diff) | |
Fix Crab Impl
Diffstat (limited to 'src/engine/courses/TestCourse.cpp')
| -rw-r--r-- | src/engine/courses/TestCourse.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/engine/courses/TestCourse.cpp b/src/engine/courses/TestCourse.cpp index 40b03059e..682db53c5 100644 --- a/src/engine/courses/TestCourse.cpp +++ b/src/engine/courses/TestCourse.cpp @@ -21,6 +21,7 @@ #include "engine/objects/Hedgehog.h" #include "engine/objects/Flagpole.h" #include "engine/objects/HotAirBalloon.h" +#include "engine/objects/Crab.h" #include "engine/particles/StarEmitter.h" extern "C" { @@ -211,7 +212,9 @@ void TestCourse::SpawnActors() { //gWorldInstance.AddEmitter(new StarEmitter(FVector(0,50,0))); //gWorldInstance.AddObject(new OHedgehog(FVector(0, 0, 0), FVector2D(0, -200), 9)); //gWorldInstance.AddObject(new OFlagpole(FVector(0, 0, -200), 0x400)); - gWorldInstance.AddObject(new OHotAirBalloon(FVector(0.0, 20.0f, -200.0f))); +// gWorldInstance.AddObject(new OHotAirBalloon(FVector(0.0, 20.0f, -200.0f))); + + gWorldInstance.AddObject(new OCrab(FVector2D(0, 0), FVector2D(0, -200))); } // Likely sets minimap boundaries |
