diff options
| author | fusion32 <marcopuzziello@gmail.com> | 2025-06-05 12:33:58 -0300 |
|---|---|---|
| committer | fusion32 <marcopuzziello@gmail.com> | 2025-06-05 12:33:58 -0300 |
| commit | 850fa1c0e128a4fe05ffdbdabc9dad25a7530a3f (patch) | |
| tree | 7a0664af11f587ba123d77f8c3c90e148b2e0bd9 /src/enums.hh | |
| parent | f080f1e4bc9475500c0b5ef3c559c0e105290137 (diff) | |
| download | game-850fa1c0e128a4fe05ffdbdabc9dad25a7530a3f.tar.gz game-850fa1c0e128a4fe05ffdbdabc9dad25a7530a3f.zip | |
declare all creature types
Diffstat (limited to 'src/enums.hh')
| -rw-r--r-- | src/enums.hh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/enums.hh b/src/enums.hh index 21194dd..8257677 100644 --- a/src/enums.hh +++ b/src/enums.hh @@ -484,6 +484,16 @@ enum SpellImpactType: int { IMPACT_SUMMON = 7, }; +enum STATE: int { + SLEEPING = 0, + IDLE = 1, + UNDERATTACK = 2, + TALKING = 3, + LEAVING = 4, + ATTACKING = 5, + PANIC = 6, +}; + enum TALK_MODE: int { TALK_SAY = 1, TALK_WHISPER = 2, |
