Changeset 7130 in orxonox.OLD for trunk/src/lib/particles/engine/particle_engine.h
- Timestamp:
 - Feb 13, 2006, 2:59:17 PM (20 years ago)
 - File:
 - 
          
- 1 edited
 
- 
          trunk/src/lib/particles/engine/particle_engine.h (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
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.
      


            






