@namespace LuckerParty.UI @using System @inherits PanelComponent
This is the Lobby
@code { public List Clients { get; set; } /// /// the hash determines if the system should be rebuilt. If it changes, it will be rebuilt /// protected override int BuildHash() { return HashCode.Combine( Clients ); } }