19 lines
351 B
C#
19 lines
351 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Fleck.Helpers
|
|
{
|
|
internal static class FleckRuntime
|
|
{
|
|
public static bool IsRunningOnMono()
|
|
{
|
|
return Type.GetType("Mono.Runtime") != null;
|
|
}
|
|
|
|
public static bool IsRunningOnWindows()
|
|
{
|
|
return true;
|
|
|
|
}
|
|
}
|
|
} |