veloren/common/src/msg/mod.rs

9 lines
169 B
Rust
Raw Normal View History

pub mod ecs_packet;
pub mod server;
pub mod client;
// Reexports
pub use self::server::ServerMsg;
pub use self::client::ClientMsg;
pub use self::ecs_packet::EcsPacket;