Add IPlatformIdentifier

This commit is contained in:
Cyberboss
2018-10-15 10:38:42 -04:00
parent bc93634c0b
commit b51f147cd8
@@ -0,0 +1,13 @@
namespace Tgstation.Server.Host.Core
{
/// <summary>
/// For identifying the current platform
/// </summary>
interface IPlatformIdentifier
{
/// <summary>
/// If the current platform is a Windows platform
/// </summary>
bool IsWindows { get; }
}
}