summaryrefslogtreecommitdiff
path: root/inc/creature.hpp
blob: c0e80a7e92c4e6e14b34a8d24fa1d7ebe538c428 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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