X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FGame.h;h=33e61c49fe547eb38eae8310f4d329505cbab4b1;hb=b894601a50f6294d7cc4b6678fc6408f126eea5e;hp=867754de0015c1b3e9940c501fcb7741f8a05e65;hpb=75fca769413e46462a498e27b7eb1c931af13e55;p=lugaru.git diff --git a/Source/Game.h b/Source/Game.h index 867754d..33e61c4 100644 --- a/Source/Game.h +++ b/Source/Game.h @@ -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