This repository has been archived on 2019-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
dungeon-gunner/source/particle/Emitter.h
2013-03-29 18:34:51 +01:00

34 lines
579 B
C++
Executable file

/*
* Emitter.h
*
* Created on: 15.08.2012
* Author: Felix
*/
#ifndef DG_EMITTER_H_
#define DG_EMITTER_H_
#include <memory>
class World;
class Particle;
class Sprite;
class Emitter {
// Public functions.
public:
Emitter(World& world);
virtual ~Emitter();
// Protected functions.
protected:
void emit();
/// Creates a particle. Allows to use a user-defined particle class and custom settings.
virtual std::shared_ptr<Sprite> createParticle() = 0;
// Private variables.
private:
World& mWorld;
};
#endif /* DG_EMITTER_H_ */