17 lines
294 B
C++
17 lines
294 B
C++
/*
|
|
* Corpse.cpp
|
|
*
|
|
* Created on: 13.09.2012
|
|
* Author: Felix
|
|
*/
|
|
|
|
#include "Corpse.h"
|
|
|
|
#include "../util/Yaml.h"
|
|
|
|
const std::string Corpse::CONFIG = "corpse.yaml";
|
|
|
|
Corpse::Corpse(const sf::Vector2f& position) :
|
|
Sprite(Data(position, CATEGORY_NONSOLID, MASK_NONE), Yaml(CONFIG)) {
|
|
}
|
|
|