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

28 lines
409 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 Enemy : public Character {
public:
2013-04-29 14:49:16 +00:00
explicit Enemy(World& world, Pathfinder& pathfinder,
const sf::Vector2f& position);
private:
virtual void onThink(int elapsed);
private:
static const std::string CONFIG;
2012-10-14 16:14:06 +00:00
};
#endif /* DG_ENEMY_H_ */