Changeset 6612 in orxonox.OLD for trunk/src/lib/particles/particle_system.h
- Timestamp:
- Jan 19, 2006, 1:50:39 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/particles/particle_system.h
r6512 r6612 12 12 #include "glincl.h" 13 13 #include "vector.h" 14 #include <list> 14 15 15 16 #include "quick_animation.h" … … 107 108 virtual unsigned int getFaceCount() const; 108 109 110 void addEmitter(ParticleEmitter* emitter); 111 void addEmitterXML(const TiXmlElement* emitterRoot); 112 void removeEmitter(ParticleEmitter* emitter); 109 113 110 114 virtual void applyField(Field* field); … … 136 140 GLuint dialectCount; //!< How many different types of particles are there in the Particle System 137 141 142 std::list<ParticleEmitter*> emitters; //!< The Emitters that do emit into this System. 143 138 144 // per particle attributes 139 145 QuickAnimation radiusAnim; //!< Animation of the radius
Note: See TracChangeset
for help on using the changeset viewer.