aboutsummaryrefslogtreecommitdiff
path: root/src/cr.hh
diff options
context:
space:
mode:
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);