Assorted bug fixes, remove dead Torch.Launcher project

This commit is contained in:
John Gross
2017-06-29 12:02:36 -07:00
parent 4b4a069adb
commit c220f899a3
43 changed files with 289 additions and 867 deletions

View File

@@ -7,10 +7,24 @@ using VRage.Game.ModAPI;
namespace Torch.API
{
/// <summary>
/// Represents a player on the server.
/// </summary>
public interface IPlayer
{
/// <summary>
/// The name of the player.
/// </summary>
string Name { get; }
/// <summary>
/// The SteamID of the player.
/// </summary>
ulong SteamId { get; }
/// <summary>
/// The player's current connection state.
/// </summary>
ConnectionState State { get; }
}
}