XCom.MapLocation.MapLocation C# (CSharp) Method

MapLocation() public method

public MapLocation ( int row, int col, int height ) : System
row int
col int
height int
return System
		public MapLocation(int row, int col, int height)
		{
			this.Row=row;
			this.Col=col;
			this.Height=height;
		}
	}
MapLocation