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

#include "entity.h"

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

#endif