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/sprites/Corpse.h

21 lines
298 B
C++

/*
* Corpse.h
*
* Created on: 13.09.2012
* Author: Felix
*/
#ifndef DG_CORPSE_H_
#define DG_CORPSE_H_
#include "../abstract/Sprite.h"
class Yaml;
class Corpse : public Sprite {
public:
explicit Corpse(const sf::Vector2f& position, const Yaml& config);
};
#endif /* DG_CORPSE_H_ */