veloren_common_net/msg/
mod.rs1pub mod client;
2pub mod compression;
3pub mod ecs_packet;
4pub mod server;
5pub mod world_msg;
6
7pub use self::{
9 client::{ClientGeneral, ClientMsg, ClientRegister, ClientType},
10 compression::{
11 CompressedData, GridLtrPacking, PackingFormula, QuadPngEncoding, TriPngEncoding,
12 VoxelImageEncoding, WidePacking, WireChonk,
13 },
14 ecs_packet::EcsCompPacket,
15 server::{
16 CharacterInfo, ChatTypeContext, DisconnectReason, InviteAnswer, Notification, PlayerInfo,
17 PlayerListUpdate, RegisterError, SerializedTerrainChunk, ServerGeneral, ServerInfo,
18 ServerInit, ServerMsg, ServerRegisterAnswer,
19 },
20 world_msg::WorldMapMsg,
21};
22use serde::{Deserialize, Serialize};
23
24#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
25pub enum PingMsg {
26 Ping,
27 Pong,
28}