예제 #1
0
        public void DoubleClick(EngineLib.Core.MouseButton button)
        {
            switch (button)
            {
            case EngineLib.Core.MouseButton.Left:
                this.LeftButtonDoubleClick();
                break;

            case EngineLib.Core.MouseButton.Right:
                this.RightButtonDoubleClick();
                break;
            }
        }
예제 #2
0
 public void DoubleClick(EngineLib.Core.MouseButton button, double x, double y)
 {
     this.SetCursorPos(x, y);
     this.DoubleClick(button);
 }