Changeset 4699 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Jun 25, 2005, 2:29:59 PM (19 years ago)
- Location:
- orxonox/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/NEWS
r4698 r4699 1 Date: June 25, 2005 2 Topic: orxonox development for win32-patch 3 Body: Included the major libraries and tool to develop orxonox on win32 to the webdev repository. Now one might download everything from <a href="http://svn.orxonox.ethz.ch/webdev/develop/">http://svn.orxonox.ethz.ch/webdev/develop/</a> 4 1 5 Date: June 25, 2005 2 6 Topic: Big demo in physically-based animations 3 7 Body: on Monday we have a big demo on orxonox's physical capabilities. We will show some major new features like the ParticleEngine, the PhysicsInterface, and last but not least the longly expected CollisionDetection. Of course all the new Features are in the new trunk, and are downloadable at the <a href="/files/snapshots">snapshot-section</a>. 4 5 8 6 9 Date: June 09, 2005 … … 22 25 Date: March 05, 2005 23 26 Topic: Orxonox Convention 2005 24 Body: We are going to make a new Convention, that you are all invited to. Visit the convention section for more details. <A href="http://www.orxonox.ethz.ch/index.php?site=conventions">link.</A 27 Body: We are going to make a new Convention, that you are all invited to. Visit the convention section for more details. <A href="http://www.orxonox.ethz.ch/index.php?site=conventions">link.</A> 25 28 26 29 Date: February 21, 2005 -
orxonox/trunk/src/util/object_manager.cc
r4597 r4699 36 36 this->managedObjectList[i] = NULL; 37 37 } 38 39 this->garbageCollector = GarbageCollector::getInstance();40 38 } 41 39 -
orxonox/trunk/src/util/object_manager.h
r4591 r4699 27 27 28 28 29 class WorldEntity;30 29 class GarbageCollector; 31 30 … … 52 51 inline static ObjectManager* getInstance(void) { if (!singletonRef) singletonRef = new ObjectManager(); return singletonRef; }; 53 52 53 void registerClass(ClassID classID); 54 54 55 /** a class handled by the objectManage */ 55 56 void mCache(Projectile); … … 66 67 67 68 tList<BaseObject>** managedObjectList; //!< A list of managed objects (handles different types and lists of them) 68 GarbageCollector* garbageCollector; //!< reference to the GrabageCollector69 69 }; 70 70
Note: See TracChangeset
for help on using the changeset viewer.