]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Game.h
Move map/waypoint/pose types to Game.h
[lugaru.git] / Source / Game.h
index 867754de0015c1b3e9940c501fcb7741f8a05e65..33e61c49fe547eb38eae8310f4d329505cbab4b1 100644 (file)
@@ -345,4 +345,21 @@ extern int directing;
 extern float dialoguetime;
 extern int dialoguegonethrough[20];
 
+enum maptypes {
+  mapkilleveryone, mapgosomewhere,
+  mapkillsomeone, mapkillmost // These two are unused
+};
+
+enum pathtypes {wpkeepwalking, wppause};
+
+static const char *pathtypenames[] = {"keepwalking", "pause"};
+
+enum editortypes {typeactive, typesitting, typesittingwall, typesleeping,
+                 typedead1, typedead2, typedead3, typedead4};
+
+static const char *editortypenames[] = {
+  "active", "sitting", "sitting wall", "sleeping",
+  "dead1", "dead2", "dead3", "dead4"
+};
+
 #endif