diff --git a/src/Tgstation.Server.Host/Core/IPlatformIdentifier.cs b/src/Tgstation.Server.Host/Core/IPlatformIdentifier.cs new file mode 100644 index 0000000000..74e3484a79 --- /dev/null +++ b/src/Tgstation.Server.Host/Core/IPlatformIdentifier.cs @@ -0,0 +1,13 @@ +namespace Tgstation.Server.Host.Core +{ + /// + /// For identifying the current platform + /// + interface IPlatformIdentifier + { + /// + /// If the current platform is a Windows platform + /// + bool IsWindows { get; } + } +}