1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
use super::*; #[mt_derive(to = "clt", repr = "u8")] pub enum ChatMsgType { Raw = 0, Normal, Announce, System, } #[mt_derive(to = "clt", repr = "u8")] pub enum PlayerListUpdateType { Init = 0, Add, Remove, }