Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/particleEngine/src/lib/graphics/particles/particle_system.cc @ 3930

Last change on this file since 3930 was 3930, checked in by bensch, 19 years ago

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

File size: 1.0 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   ### File Specific:
12   main-programmer: Benjamin Grauer
13   co-programmer: ...
14*/
15
16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD_ENTITY
17
18#include "particle_system.h"
19
20#include "particle_emitter.h"
21#include "particle_engine.h"
22
23using namespace std;
24
25
26/**
27   \brief standard constructor
28   \param count the Count of particles in the System
29   \param type The Type of the ParticleSystem
30
31   \todo this constructor is not jet implemented - do it
32*/
33ParticleSystem::ParticleSystem (unsigned int count, PARTICLE_TYPE type) 
34{
35   this->setClassName ("ParticleSystem");
36
37   this->particleType = type;
38}
39
40
41/**
42   \brief standard deconstructor
43
44*/
45ParticleSystem::~ParticleSystem () 
46{
47  // delete what has to be deleted here
48}
49
Note: See TracBrowser for help on using the repository browser.