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.cpp

14 lines
233 B
C++
Raw Normal View History

2012-10-14 16:14:06 +00:00
/*
* Corpse.cpp
2012-10-14 16:14:06 +00:00
*
* Created on: 13.09.2012
* Author: Felix
*/
#include "Corpse.h"
2012-10-14 16:14:06 +00:00
2012-12-22 14:10:26 +00:00
Corpse::Corpse(const sf::Vector2f& position, const Yaml& config) :
2012-12-23 14:50:49 +00:00
Sprite(Data(position, 0, CATEGORY_NONSOLID, MASK_NONE), config) {
2012-10-14 16:14:06 +00:00
}