OnTopReplica/src/OnTopReplica/Platforms/DebugPlatform.cs
Lorenz Cuno Klopfenstein 1ac70ff5ec Clean up
2018-08-23 12:50:42 +02:00

23 lines
342 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OnTopReplica.Platforms {
#if DEBUG
/// <summary>
/// Fake platform for debugging.
/// </summary>
class DebugPlatform : PlatformSupport {
public override bool CheckCompatibility() {
return true;
}
}
#endif
}