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.h

27 lines
428 B
C
Raw Normal View History

2012-10-14 16:14:06 +00:00
/*
* Enemy.h
*
* Created on: 10.09.2012
* Author: Felix
*/
#ifndef DG_ENEMY_H_
#define DG_ENEMY_H
#include "../abstract/Character.h"
2012-12-22 13:56:17 +00:00
class World;
2012-10-14 16:14:06 +00:00
class Yaml;
class Enemy : public Character {
public:
explicit Enemy(World& world, TileManager& tileManager,
2013-04-28 16:11:39 +00:00
Pathfinder& pathfinder, const sf::Vector2f& position,
const Yaml& config);
protected:
virtual void onThink(int elapsed);
2012-10-14 16:14:06 +00:00
};
#endif /* DG_ENEMY_H_ */