20 lines
468 B
C#
20 lines
468 B
C#
using System;
|
|
|
|
namespace LuckerParty;
|
|
|
|
/// <summary>
|
|
/// A Lucker Party Client. Entry point for a user (or bot?) to get a UI and become a Spectator or Lucker after they've
|
|
/// connected to the lobby.
|
|
/// </summary>
|
|
public sealed class Client : Component
|
|
{
|
|
public Connection Connection { get; set; }
|
|
|
|
public string Name => Connection.DisplayName;
|
|
public DateTimeOffset ConnectionTime => Connection.ConnectionTime;
|
|
|
|
protected override void OnStart()
|
|
{
|
|
}
|
|
}
|