diff options
| author | fusion32 <marcopuzziello@gmail.com> | 2025-06-11 03:30:51 -0300 |
|---|---|---|
| committer | fusion32 <marcopuzziello@gmail.com> | 2025-06-11 03:30:51 -0300 |
| commit | 60b89174c6b6300079344267bae60d74347e1fa5 (patch) | |
| tree | 71f97db0af2d5b64e34fcaee72f95ceccb6f433e /src/cr.hh | |
| parent | b167d45f88cfb824a96c3a5a120c34c30768ecda (diff) | |
| download | game-60b89174c6b6300079344267bae60d74347e1fa5.tar.gz game-60b89174c6b6300079344267bae60d74347e1fa5.zip | |
some announce functions
Diffstat (limited to 'src/cr.hh')
| -rw-r--r-- | src/cr.hh | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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); |
