Axiom.SceneManagers.Bsp.Quake3Level.ReadLeafFaces C# (CSharp) Method

ReadLeafFaces() private method

private ReadLeafFaces ( InternalBspLump lump, BinaryReader reader ) : void
lump InternalBspLump
reader System.IO.BinaryReader
return void
		private void ReadLeafFaces( InternalBspLump lump, BinaryReader reader )
		{
			reader.BaseStream.Seek( lump.offset, SeekOrigin.Begin );

			for ( int i = 0; i < leafFaces.Length; i++ )
				leafFaces[ i ] = reader.ReadInt32();
		}