summaryrefslogtreecommitdiff
path: root/src/being.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/being.h')
-rw-r--r--src/being.h19
1 files changed, 1 insertions, 18 deletions
diff --git a/src/being.h b/src/being.h
index ccb1c4c4..54c9d717 100644
--- a/src/being.h
+++ b/src/being.h
@@ -33,6 +33,7 @@
#include "effectmanager.h"
#include "map.h"
#include "particlecontainer.h"
+#include "position.h"
#include "sprite.h"
#include "gui/speechbubble.h"
@@ -52,24 +53,6 @@ class Particle;
class SpeechBubble;
class Text;
-/**
- * A position along a being's path.
- */
-struct PATH_NODE
-{
- /**
- * Constructor.
- */
- PATH_NODE(unsigned short x, unsigned short y):
- x(x), y(y)
- { }
-
- unsigned short x;
- unsigned short y;
-};
-typedef std::list<PATH_NODE> Path;
-typedef Path::iterator PathIterator;
-
enum Gender {
GENDER_MALE = 0,
GENDER_FEMALE = 1,