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++
Raw Normal View History

2012-10-14 16:14:06 +00:00
/*
* Enemy.cpp
*
* Created on: 10.09.2012
* Author: Felix
*/
#include "Enemy.h"
#include "Corpse.h"
2012-10-14 16:14:06 +00:00
2012-12-22 13:56:17 +00:00
Enemy::Enemy(World& collection, Pathfinder& pathfinder,
2012-12-22 14:10:26 +00:00
const sf::Vector2f& position, const Yaml& config) :
2012-12-22 13:56:17 +00:00
Character(collection, pathfinder,
Data(position, 0, CATEGORY_ACTOR, MASK_ALL),
config) {
2012-10-14 16:14:06 +00:00
}