summaryrefslogtreecommitdiff
path: root/src/to_clt/chat.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/to_clt/chat.rs')
-rw-r--r--src/to_clt/chat.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/to_clt/chat.rs b/src/to_clt/chat.rs
new file mode 100644
index 0000000..4d99853
--- /dev/null
+++ b/src/to_clt/chat.rs
@@ -0,0 +1,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,
+}