blob: 38394e9157685c32018b91b9492136f8349d7cc1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef CLIF_T_HPP
#define CLIF_T_HPP
#include <cstdint>
enum class BeingRemoveWhy : uint8_t
{
// general disappearance
GONE = 0,
// only case handled specially in client
DEAD = 1,
QUIT = 2,
WARPED = 3,
// handled specially in clif_clearchar - sent as 0 over network
DISGUISE = 9,
// handled speciall in mob_warp - not actually sent over network
NEGATIVE1 = 0xff,
};
#endif // CLIF_T_HPP
|