aboutsummaryrefslogtreecommitdiff
path: root/src/enums.hh
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2025-05-24 20:57:24 -0300
committerfusion32 <marcopuzziello@gmail.com>2025-05-24 20:57:24 -0300
commit3f557369c7bbd08fdf2e6dbd9271873b20a9a144 (patch)
tree28bb9b4ad9c0324036d753eea772855a180c37f3 /src/enums.hh
parentb7432b4e74284138f1740f4577b9cb32e1f120d0 (diff)
downloadgame-3f557369c7bbd08fdf2e6dbd9271873b20a9a144.tar.gz
game-3f557369c7bbd08fdf2e6dbd9271873b20a9a144.zip
halfway of `map.cc` and start of `objects.cc`
Diffstat (limited to 'src/enums.hh')
-rw-r--r--src/enums.hh21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/enums.hh b/src/enums.hh
index d4ba042..5124936 100644
--- a/src/enums.hh
+++ b/src/enums.hh
@@ -99,6 +99,27 @@ enum GAMESTATE: int {
GAME_ENDING = 3,
};
+enum INSTANCEATTRIBUTE: int {
+ CONTENT = 0,
+ CHESTQUESTNUMBER = 1,
+ AMOUNT = 2,
+ KEYNUMBER = 3,
+ KEYHOLENUMBER = 4,
+ DOORLEVEL = 5,
+ DOORQUESTNUMBER = 6,
+ DOORQUESTVALUE = 7,
+ CHARGES = 8,
+ TEXTSTRING = 9,
+ EDITOR = 10,
+ CONTAINERLIQUIDTYPE = 11,
+ POOLLIQUIDTYPE = 12,
+ ABSTELEPORTDESTINATION = 13,
+ RESPONSIBLE = 14,
+ REMAININGEXPIRETIME = 15,
+ SAVEDEXPIRETIME = 16,
+ REMAININGUSES = 17,
+};
+
enum KNOWNCREATURESTATE: int {
KNOWNCREATURE_FREE = 0,
KNOWNCREATURE_UPTODATE = 1,