From: Christoph Sommer Date: Tue, 11 Apr 2006 18:39:58 +0000 (+0000) Subject: made typedefs public X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=bdf73607f9c2d5fcb71149cf2e1966747dc36b2c;p=supertux.git made typedefs public SVN-Revision: 3301 --- diff --git a/src/sector.hpp b/src/sector.hpp index 67efe384e..7fff0f38b 100644 --- a/src/sector.hpp +++ b/src/sector.hpp @@ -125,6 +125,10 @@ public: Rect get_active_region(); + typedef std::vector GameObjects; + typedef std::vector MovingObjects; + typedef std::vector SpawnPoints; + private: uint32_t collision_tile_attributes(const Rect& dest) const; @@ -146,10 +150,6 @@ private: void fix_old_tiles(); - typedef std::vector GameObjects; - typedef std::vector MovingObjects; - typedef std::vector SpawnPoints; - static Sector* _current; std::string name;