summaryrefslogtreecommitdiff
path: root/src/to_clt/chat.rs
blob: 4d998535535dff4fe2f89610fb06d09436526ed2 (plain)
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,
}