OnTopReplica/OnTopReplica/Platforms/Other.cs
2010-06-22 13:05:30 +02:00

15 lines
290 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OnTopReplica.Platforms {
class Other : PlatformSupport {
public override bool CheckCompatibility() {
//TODO: Err MSG
return false;
}
}
}