13 lines
247 B
C++
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) {
|
|
}
|