18 lines
265 B
C++
18 lines
265 B
C++
/*
|
|
* Corpse.h
|
|
*
|
|
* Created on: 13.09.2012
|
|
* Author: Felix
|
|
*/
|
|
|
|
#ifndef DG_CORPSE_H_
|
|
#define DG_CORPSE_H_
|
|
|
|
#include "../abstract/Circle.h"
|
|
|
|
class Corpse : public Circle {
|
|
public:
|
|
explicit Corpse(const sf::Vector2f& position);
|
|
};
|
|
|
|
#endif /* DG_CORPSE_H_ */
|