AIMA.Core.Util.DataStructure.XYLocation.XYLocation C# (CSharp) Method

XYLocation() public method

public XYLocation ( int x, int y ) : System
x int
y int
return System
        public XYLocation(int x, int y)
        {
            xCoOrdinate = x;
            yCoOrdinate = y;
        }