using System; using System.Collections.Generic; using System.Text; namespace LightReflectiveMirror { struct Room { public int hostId; public string serverName; public string serverData; public bool isPublic; public int maxPlayers; public List clients; } }