Terraria.k_TileBlock.SetParentOffset C# (CSharp) Method

SetParentOffset() public method

public SetParentOffset ( byte x, byte y ) : void
x byte
y byte
return void
		public void SetParentOffset(byte x, byte y)
		{
			y <<= 4;
			parentOffset = (byte)(x + y);
		}
		public Point GetParentOffset()