aboutsummaryrefslogtreecommitdiff
path: root/src/operate.hh
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2025-06-11 03:30:51 -0300
committerfusion32 <marcopuzziello@gmail.com>2025-06-11 03:30:51 -0300
commit60b89174c6b6300079344267bae60d74347e1fa5 (patch)
tree71f97db0af2d5b64e34fcaee72f95ceccb6f433e /src/operate.hh
parentb167d45f88cfb824a96c3a5a120c34c30768ecda (diff)
downloadgame-60b89174c6b6300079344267bae60d74347e1fa5.tar.gz
game-60b89174c6b6300079344267bae60d74347e1fa5.zip
some announce functions
Diffstat (limited to 'src/operate.hh')
-rw-r--r--src/operate.hh15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/operate.hh b/src/operate.hh
index 6270ec7..de7b54d 100644
--- a/src/operate.hh
+++ b/src/operate.hh
@@ -4,6 +4,21 @@
#include "common.hh"
#include "map.hh"
+enum : int {
+ CREATURE_HEALTH_CHANGED = 1,
+ CREATURE_LIGHT_CHANGED = 2,
+ CREATURE_OUTFIT_CHANGED = 3,
+ CREATURE_SPEED_CHANGED = 4,
+ CREATURE_SKULL_CHANGED = 5,
+ CREATURE_PARTY_CHANGED = 6,
+};
+
+enum : int {
+ OBJECT_DELETED = 0,
+ OBJECT_CREATED = 1,
+ OBJECT_CHANGED = 2,
+};
+
void CheckContainerDestination(Object Obj, Object Con);
void CheckInventoryDestination(Object Obj, Object Con, bool Split);