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

18 lines
324 B
C++

/*
* Enemy.cpp
*
* Created on: 10.09.2012
* Author: Felix
*/
#include "Enemy.h"
#include "Corpse.h"
Enemy::Enemy(World& collection, Pathfinder& pathfinder,
const sf::Vector2f& position, const Yaml& config) :
Character(collection, pathfinder,
Data(position, 0, CATEGORY_ACTOR, MASK_ALL),
config) {
}