45f0b31d57
Working: Rendering Resources Physics Player movement with mouse Shooting with mouse Tiles
22 lines
390 B
C++
Executable file
22 lines
390 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"
|
|
|
|
/**
|
|
* Prototype for a particle.
|
|
*/
|
|
class Particle : public Sprite {
|
|
public:
|
|
Particle(const std::shared_ptr<sf::Texture>& texture, const PhysicalData& data);
|
|
virtual ~Particle();
|
|
};
|
|
|
|
#endif /* DG_PARTICLE_H_ */
|