Changeset 7130 in orxonox.OLD for trunk/src/lib/particles/engine
- Timestamp:
- Feb 13, 2006, 2:59:17 PM (19 years ago)
- Location:
- trunk/src/lib/particles/engine
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/particles/engine/particle_engine.cc
r6619 r7130 20 20 #include "class_list.h" 21 21 22 #include "list.h"23 22 #include "debug.h" 24 23 #include "stdlibincl.h" -
trunk/src/lib/particles/engine/particle_engine.h
r6619 r7130 11 11 #include "particle_system.h" 12 12 #include "particle_emitter.h" 13 #include <list> 13 14 14 15 #include "parser/tinyxml/tinyxml.h" 15 16 16 17 // FORWARD DECLARATION 17 template<class T> class tList;18 18 19 19 //! A ParticleConnection enables us to emitt from any emitter into any other particleSystem … … 64 64 static ParticleEngine* singletonRef; //!< The reference to the engine. 65 65 66 tList<ParticleSystem>*systemList; //!< A list of Systems handled by the ParticleEngine.67 tList<ParticleEmitter>*emitterList; //!< A list of Emitters handled by the ParticleEngine.66 std::list<ParticleSystem> systemList; //!< A list of Systems handled by the ParticleEngine. 67 std::list<ParticleEmitter> emitterList; //!< A list of Emitters handled by the ParticleEngine. 68 68 69 69 tList<ParticleConnection>* connectionList; //!< A list of Connections between Systems and Emitters.
Note: See TracChangeset
for help on using the changeset viewer.