Changeset 4139 in orxonox.OLD for orxonox/branches/md2_loader/src/util/object_manager.h
- Timestamp:
- May 10, 2005, 10:39:01 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/md2_loader/src/util/object_manager.h
r4127 r4139 16 16 #include "base_object.h" 17 17 18 #define OM_ 19 20 class WorldEntity; 21 22 23 template<class T> class tList; 18 24 19 25 //! the object manager itself … … 24 30 virtual ~ObjectManager(void); 25 31 32 void preLoad(); 33 26 34 private: 27 35 ObjectManager(void); 28 36 static ObjectManager* singletonRef; 37 38 tList<WorldEntity>* projectileBuffer; //!< a list of projectiles that is generated at the beginning to make orx faster 39 40 29 41 }; 30 42
Note: See TracChangeset
for help on using the changeset viewer.