summaryrefslogtreecommitdiff
path: root/src/being.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/being.h')
-rw-r--r--src/being.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/being.h b/src/being.h
index c1537943..23e1e5fa 100644
--- a/src/being.h
+++ b/src/being.h
@@ -82,4 +82,26 @@ void empty_path(NODE *node);
extern NODE *player_node;
+class Being {
+ public:
+ unsigned int id;
+ unsigned short x, y, direction;
+ unsigned short image;
+ unsigned char action, frame;
+};
+
+class Npc {
+};
+
+class Warp {
+};
+
+class Player {
+};
+
+class Monster {
+};
+
+//std::vector<Being *> beings;
+
#endif