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
2013-03-30 02:36:06 +01:00

13 lines
247 B
C++

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