usebevy::ecs::event::Event;usebevy_matchbox::matchbox_socket::PeerId;/// Socket events that are possible to subscribe to in Bevy
#[derive(Debug, Clone, Event)]pubenumRtcServerEvent{/// The signaling server assigned the socket a unique ID
IdAssigned(PeerId),/// A peer has joined this server
ClientJoined(PeerId),/// A peer has left this server
ClientLeft(PeerId),}