veloren/common/src/msg/server.rs
Joshua Barretto dbbcc1e80e Added basic networked communications, chat communication
Former-commit-id: 06bafdf69486f4da5fbc416835e34c5bed8c2caa
2019-03-04 19:58:58 +00:00

6 lines
96 B
Rust

#[derive(Debug, Serialize, Deserialize)]
pub enum ServerMsg {
Chat(String),
Shutdown,
}