summaryrefslogtreecommitdiff
path: root/src/creature.h
blob: 5f5bb8decb4a879f77a3761fcfa7b3ca8b8bb451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef creature_h
#define creature_h

#include "entity.h"

class Creature: public Entity
{
  public:
    Creature(Window m, std::string s);
};

#endif