OnTopReplica/OnTopReplica/Platforms/WindowsEight.cs
Lorenz Cuno Klopfenstein c2a61665d6 Added Windows 8 support.
2012-10-13 15:37:28 +02:00

17 lines
340 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using OnTopReplica.Native;
namespace OnTopReplica.Platforms {
class WindowsEight : WindowsSeven {
public override void PostHandleFormInit(MainForm form) {
//Noop
}
}
}