24 lines
381 B
C++
Executable file
24 lines
381 B
C++
Executable file
/*
|
|
* Particle.h
|
|
*
|
|
* Created on: 15.08.2012
|
|
* Author: Felix
|
|
*/
|
|
|
|
#ifndef DG_PARTICLE_H_
|
|
#define DG_PARTICLE_H_
|
|
|
|
#include "../abstract/Sprite.h"
|
|
|
|
class Yaml;
|
|
|
|
/**
|
|
* Prototype for a particle.
|
|
*/
|
|
class Particle : public Sprite {
|
|
public:
|
|
explicit Particle(const Yaml& config, const Data& data);
|
|
virtual ~Particle();
|
|
};
|
|
|
|
#endif /* DG_PARTICLE_H_ */
|