21 lines
387 B
Plaintext
21 lines
387 B
Plaintext
@namespace LuckerParty.UI
|
|
@using System
|
|
@inherits PanelComponent
|
|
|
|
<root>
|
|
<div class="title">This is the Lobby</div>
|
|
</root>
|
|
|
|
@code
|
|
{
|
|
public List<Client> Clients { get; set; }
|
|
|
|
/// <summary>
|
|
/// the hash determines if the system should be rebuilt. If it changes, it will be rebuilt
|
|
/// </summary>
|
|
protected override int BuildHash()
|
|
{
|
|
return HashCode.Combine( Clients );
|
|
}
|
|
}
|