AIMA.Core.Util.DataStructure.XYLocation.XYLocation C# (CSharp) 메소드

XYLocation() 공개 메소드

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