diff options
Diffstat (limited to 'server/protocol')
-rw-r--r-- | server/protocol/src/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/server/protocol/src/lib.rs b/server/protocol/src/lib.rs index 33873a33..54a7f868 100644 --- a/server/protocol/src/lib.rs +++ b/server/protocol/src/lib.rs @@ -209,6 +209,11 @@ pub enum PacketC { ServerMessage { text: String, }, + ServerHint { + #[bincode(with_serde)] + position: Option<IVec2>, + message: Option<Message>, + }, Score(Score), SetIngame { state: bool, |