Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 22, 2005, 11:23:48 AM (19 years ago)
Author:
bensch
Message:

orxonox/branches/particleEngine: some more definitions of the particleSystem/Emitter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/particleEngine/src/lib/graphics/particles/particle_system.cc

    r3925 r3930  
    1818#include "particle_system.h"
    1919
     20#include "particle_emitter.h"
     21#include "particle_engine.h"
     22
    2023using namespace std;
    2124
     
    2326/**
    2427   \brief standard constructor
     28   \param count the Count of particles in the System
     29   \param type The Type of the ParticleSystem
     30
    2531   \todo this constructor is not jet implemented - do it
    2632*/
    27 ParticleSystem::ParticleSystem ()
     33ParticleSystem::ParticleSystem (unsigned int count, PARTICLE_TYPE type)
    2834{
    2935   this->setClassName ("ParticleSystem");
     36
     37   this->particleType = type;
    3038}
    3139
Note: See TracChangeset for help on using the changeset viewer.