13 lines
204 B
C#
13 lines
204 B
C#
namespace Piston.API
|
|
{
|
|
public interface IEnvironmentInfo
|
|
{
|
|
EnvironmentType Type { get; }
|
|
}
|
|
|
|
public enum EnvironmentType
|
|
{
|
|
DedicatedServer,
|
|
GameClient
|
|
}
|
|
} |