summaryrefslogtreecommitdiff
path: root/src/to_clt/chat.rs
diff options
context:
space:
mode:
authorLizzy Fleckenstein <eliasfleckenstein@web.de>2023-02-14 16:17:20 +0100
committerLizzy Fleckenstein <eliasfleckenstein@web.de>2023-02-14 16:17:20 +0100
commit6c1870c9405a80cb9f08e7fbb2db0b504522e1b2 (patch)
treed8db061bf9ae2ad6e67013e9cb378bca51303f55 /src/to_clt/chat.rs
parent3cb97b94d3e3d83fbbbefde9c0a40cdd27ea5416 (diff)
downloadmt_net-6c1870c9405a80cb9f08e7fbb2db0b504522e1b2.tar.xz
Implement NodeMeta and add Inventory stub
Diffstat (limited to 'src/to_clt/chat.rs')
-rw-r--r--src/to_clt/chat.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/to_clt/chat.rs b/src/to_clt/chat.rs
deleted file mode 100644
index 4d99853..0000000
--- a/src/to_clt/chat.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-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,
-}