20 lines
357 B
C#
20 lines
357 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace VirtualComputerSender
|
|||
|
{
|
|||
|
public enum MouseBS
|
|||
|
{
|
|||
|
LeftButton = 1,
|
|||
|
MiddleButton = 4,
|
|||
|
RightButton = 2,
|
|||
|
WheelDown = 16,
|
|||
|
WheelUp = 8,
|
|||
|
XButton1 = 32,
|
|||
|
XButton2 = 64
|
|||
|
}
|
|||
|
}
|