OnTopReplica/OnTopReplica/Native/MK.cs

15 lines
347 B
C#
Raw Normal View History

2013-05-04 04:16:42 +12:00
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;
}
}