summaryrefslogtreecommitdiff
path: root/inc/creature.h
blob: eef0d03854919b54dcb780f30979ab00e7237024 (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.h"

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

#endif