Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/branches/particleEngine: some more properties

File size: 1.1 KB
RevLine 
[1853]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.
[1855]10
11   ### File Specific:
[3925]12   main-programmer: Benjamin Grauer
[1855]13   co-programmer: ...
[1853]14*/
15
[3593]16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD_ENTITY
[1853]17
[3925]18#include "particle_system.h"
[1853]19
[3930]20#include "particle_emitter.h"
21#include "particle_engine.h"
22
[1856]23using namespace std;
[1853]24
[1856]25
[3245]26/**
27   \brief standard constructor
[3930]28   \param count the Count of particles in the System
29   \param type The Type of the ParticleSystem
30
[3245]31   \todo this constructor is not jet implemented - do it
32*/
[3930]33ParticleSystem::ParticleSystem (unsigned int count, PARTICLE_TYPE type) 
[3365]34{
[3925]35   this->setClassName ("ParticleSystem");
[3930]36
37   this->particleType = type;
[3365]38}
[1853]39
40
[3245]41/**
42   \brief standard deconstructor
[1853]43
[3245]44*/
[3925]45ParticleSystem::~ParticleSystem () 
[3543]46{
47  // delete what has to be deleted here
48}
[1853]49
[3931]50
51void ParticleSystem::tick(float dt)
52{
53 
54
55}
Note: See TracBrowser for help on using the repository browser.