Files
Torch/PistonAPI/IEnvironmentInfo.cs

13 lines
203 B
C#

namespace PistonAPI
{
public interface IEnvironmentInfo
{
EnvironmentType Type { get; }
}
public enum EnvironmentType
{
DedicatedServer,
GameClient
}
}