XCom.Interfaces.Base.IMap_Base.this C# (CSharp) Method

this() public method

Get/Set a MapTile using a MapLocation
public this ( MapLocation location ) : IMapTile
location MapLocation
return IMapTile
		public IMapTile this[MapLocation location]
		{
			get { return this[location.Row, location.Col, location.Height]; }
			set { this[location.Row, location.Col, location.Height] = value; }
		}

Same methods

IMap_Base::this ( int row, int col ) : IMapTile
IMap_Base::this ( int row, int col, int height ) : IMapTile