aboutsummaryrefslogtreecommitdiff
path: root/src/cr.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/cr.hh
parentb167d45f88cfb824a96c3a5a120c34c30768ecda (diff)
downloadgame-60b89174c6b6300079344267bae60d74347e1fa5.tar.gz
game-60b89174c6b6300079344267bae60d74347e1fa5.zip
some announce functions
Diffstat (limited to 'src/cr.hh')
-rw-r--r--src/cr.hh7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cr.hh b/src/cr.hh
index 92521bd..162cb68 100644
--- a/src/cr.hh
+++ b/src/cr.hh
@@ -403,6 +403,13 @@ struct TCombat{
// TFindCreatures
// =============================================================================
+enum : int {
+ FIND_PLAYERS = 0x01,
+ FIND_NPCS = 0x02,
+ FIND_MONSTERS = 0x04,
+ FIND_ALL = FIND_PLAYERS | FIND_NPCS | FIND_MONSTERS,
+};
+
struct TFindCreatures {
TFindCreatures(int RadiusX, int RadiusY, int CenterX, int CenterY, int Mask);
TFindCreatures(int RadiusX, int RadiusY, uint32 CreatureID, int Mask);