XCom.XCMapTile.XCMapTile C# (CSharp) Method

XCMapTile() private method

private XCMapTile ( ITile ground, ITile west, ITile north, ITile content ) : System
ground XCom.Interfaces.Base.ITile
west XCom.Interfaces.Base.ITile
north XCom.Interfaces.Base.ITile
content XCom.Interfaces.Base.ITile
return System
		internal XCMapTile(ITile ground, ITile west, ITile north, ITile content)
		{
			this.ground = ground;
			this.north = north;
			this.west = west;
			this.content = content;

			calcTiles();
			drawAbove = true;
			blank = false;
			//unit = null;
		}