1pub type PacketIndex = u16; 2pub type Tick = u16; 3pub type MessageIndex = u16; 4pub type ShortMessageIndex = u8; 5 6#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)] 7pub enum HostType { 8 Server, 9 Client, 10}