]> git.lizzy.rs Git - mt_net.git/blob - src/to_clt/chat.rs
Initial commit
[mt_net.git] / src / to_clt / chat.rs
1 use super::*;
2
3 #[mt_derive(to = "clt", repr = "u8")]
4 pub enum ChatMsgType {
5     Raw = 0,
6     Normal,
7     Announce,
8     System,
9 }
10
11 #[mt_derive(to = "clt", repr = "u8")]
12 pub enum PlayerListUpdateType {
13     Init = 0,
14     Add,
15     Remove,
16 }