summaryrefslogtreecommitdiff
path: root/inc/creature.hpp
blob: ab4b328ab82c88c849fbc58f81bc8fa08a36bd18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef creature_h
#define creature_h

#include "entity.hpp"

class Creature: public Entity
{
  public:
    Creature(Window m, std::string s);
    void Behavior();
	void Action();
	
  private:
    int xT;
    int yT;
};

#endif