diff options
Diffstat (limited to 'src/engine/World.h')
| -rw-r--r-- | src/engine/World.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/engine/World.h b/src/engine/World.h index 703404c0f..b6801a668 100644 --- a/src/engine/World.h +++ b/src/engine/World.h @@ -10,6 +10,7 @@ #include "vehicles/Train.h" #include "TrainCrossing.h" #include "vehicles/OThwomp.h" +#include "vehicles/OPenguin.h" #include <memory> #include "Actor.h" @@ -146,6 +147,9 @@ public: std::vector<std::unique_ptr<OThwomp>> Thwomps; void AddThwomp(s16 x, s16 z, s16 direction, f32 scale, s16 behaviour, s16 primAlpha, u16 boundingBoxSize = 7); + std::vector<std::shared_ptr<OPenguin>> Penguins; + std::shared_ptr<OPenguin> AddPenguin(Vec3f pos, u16 direction, OPenguin::PenguinType type, OPenguin::Behaviour behaviour); + TrainCrossing* AddCrossing(Vec3f position, u32 waypointMin, u32 waypointMax, f32 approachRadius, f32 exitRadius); std::vector<std::shared_ptr<TrainCrossing>> Crossings; |
