OnTopReplica/OnTopReplica/Native/MK.cs
2013-05-03 18:16:42 +02:00

15 lines
347 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OnTopReplica.Native {
/// <summary>
/// Native Mouse click codes.
/// </summary>
static class MK {
public const int LBUTTON = 0x0001;
public const int RBUTTON = 0x0002;
public const int MBUTTON = 0x0010;
}
}