summaryrefslogtreecommitdiff
path: root/inc/creature.h~
diff options
context:
space:
mode:
Diffstat (limited to 'inc/creature.h~')
-rw-r--r--inc/creature.h~16
1 files changed, 0 insertions, 16 deletions
diff --git a/inc/creature.h~ b/inc/creature.h~
deleted file mode 100644
index 19d4cb3..0000000
--- a/inc/creature.h~
+++ /dev/null
@@ -1,16 +0,0 @@
-#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