made typedefs public
authorChristoph Sommer <mail@christoph-sommer.de>
Tue, 11 Apr 2006 18:39:58 +0000 (18:39 +0000)
committerChristoph Sommer <mail@christoph-sommer.de>
Tue, 11 Apr 2006 18:39:58 +0000 (18:39 +0000)
SVN-Revision: 3301

src/sector.hpp

index 67efe38..7fff0f3 100644 (file)
@@ -125,6 +125,10 @@ public:
 
   Rect get_active_region();
 
+  typedef std::vector<GameObject*> GameObjects;
+  typedef std::vector<MovingObject*> MovingObjects;
+  typedef std::vector<SpawnPoint*> SpawnPoints;
+
 private:
   uint32_t collision_tile_attributes(const Rect& dest) const;
 
@@ -146,10 +150,6 @@ private:
 
   void fix_old_tiles();
 
-  typedef std::vector<GameObject*> GameObjects;
-  typedef std::vector<MovingObject*> MovingObjects;
-  typedef std::vector<SpawnPoint*> SpawnPoints;
-
   static Sector* _current;
   
   std::string name;