X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fsector.hpp;h=50edf73d86e122bd20926ec3ac8e805536b02671;hb=ca86583fae991aa3280c5d70bf20dbf0504a93cb;hp=8bd89669ebc4aff483d38379c4527d1778e5ac38;hpb=c62f4f7c11116b2ba6d6a9dfdb74bc7f07e840d0;p=supertux.git diff --git a/src/sector.hpp b/src/sector.hpp index 8bd89669e..50edf73d8 100644 --- a/src/sector.hpp +++ b/src/sector.hpp @@ -49,6 +49,7 @@ class SpawnPoint; class MovingObject; class CollisionHit; class Level; +class Portable; enum MusicType { LEVEL_MUSIC, @@ -164,6 +165,7 @@ public: typedef std::vector GameObjects; typedef std::vector MovingObjects; typedef std::vector SpawnPoints; + typedef std::vector Portables; private: Level* level; /**< Parent level containing this sector */ @@ -232,6 +234,7 @@ public: // TODO make this private again GameObjects gameobjects; MovingObjects moving_objects; SpawnPoints spawnpoints; + Portables portables; std::string music; float gravity;