namespace Torch.API { /// /// Represents a player on the server. /// public interface IPlayer { /// /// The name of the player. /// string Name { get; } /// /// The SteamID of the player. /// ulong SteamId { get; } /// /// The player's current connection state. /// ConnectionState State { get; } } }