AdvancedLauncher.Tools.Win32.User32.POINT.POINT C# (CSharp) Method

POINT() public method

public POINT ( int x, int y ) : System.Runtime.InteropServices
x int
y int
return System.Runtime.InteropServices
        public POINT(int x, int y)
        {
            this.x = x;
            this.y = y;
        }