Microsoft.Xna.Framework.Point.Point C# (CSharp) Method

Point() public method

public Point ( int x, int y )
x int
y int
        public Point(int x, int y)
        {
            this.X = x;
            this.Y = y;
        }
        public static bool operator ==(Point a, Point b)