13 lines
262 B
C++
13 lines
262 B
C++
/*
|
|
* Corpse.cpp
|
|
*
|
|
* Created on: 13.09.2012
|
|
* Author: Felix
|
|
*/
|
|
|
|
#include "Corpse.h"
|
|
|
|
Corpse::Corpse(World& world, const Vector2f& position, const Yaml& config) :
|
|
Sprite(config, PhysicalData(position, world, CATEGORY_NONSOLID, MASK_NONE, false)) {
|
|
}
|
|
|