15 lines
244 B
C++
15 lines
244 B
C++
/*
|
|
* Corpse.cpp
|
|
*
|
|
* Created on: 13.09.2012
|
|
* Author: Felix
|
|
*/
|
|
|
|
#include "Corpse.h"
|
|
|
|
#include "../util/Yaml.h"
|
|
|
|
Corpse::Corpse(const sf::Vector2f& position) :
|
|
Circle(position, CATEGORY_NONSOLID, MASK_NONE, Yaml("corpse.yaml")) {
|
|
}
|
|
|