コード例 #1
0
 public static void RotateWheel(UIObject uiObject, int delta)
 {
     PointerInput.Move(uiObject: uiObject);
     RotateWheel(delta: delta);
 }
コード例 #2
0
ファイル: UIObject.cs プロジェクト: alexserov/wad_decompiled
        public void MovePointer(double offsetX, double offsetY)
        {
            var location = BoundingRectangle.Location;

            PointerInput.Move(point: new PointI(x: (int)(location.X + offsetX), y: (int)(location.Y + offsetY)));
        }