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++

/*
* Enemy.h
*
* Created on: 10.09.2012
* Author: Felix
*/
#ifndef DG_ENEMY_H_
#define DG_ENEMY_H
#include "../abstract/Character.h"
class World;
class Enemy : public Character {
public:
explicit Enemy(World& world, Pathfinder& pathfinder,
const sf::Vector2f& position);
private:
virtual void onThink(int elapsed);
private:
static const std::string CONFIG;
};
#endif /* DG_ENEMY_H_ */