Files
Torch/Torch.API/IEnvironmentInfo.cs
2016-12-17 01:59:03 -08:00

13 lines
203 B
C#

namespace Torch.API
{
public interface IEnvironmentInfo
{
EnvironmentType Type { get; }
}
public enum EnvironmentType
{
DedicatedServer,
GameClient
}
}