internal RenderModelSectionBlockBase(BinaryReader binaryReader)
 {
     this.globalGeometryClassificationEnumDefinition = (GlobalGeometryClassificationEnumDefinition)binaryReader.ReadInt16();
     this.invalidName_      = binaryReader.ReadBytes(2);
     this.sectionInfo       = new GlobalGeometrySectionInfoStructBlock(binaryReader);
     this.rigidNode         = binaryReader.ReadShortBlockIndex1();
     this.flags             = (Flags)binaryReader.ReadInt16();
     this.sectionData       = ReadRenderModelSectionDataBlockArray(binaryReader);
     this.geometryBlockInfo = new GlobalGeometryBlockInfoStructBlock(binaryReader);
 }
 public RenderModelSectionBlock(BinaryReader binaryReader)
 {
     this.globalGeometryClassificationEnumDefinition = (GlobalGeometryClassificationEnumDefinition)binaryReader.ReadInt16();
     this.padding = binaryReader.ReadBytes(2);
     this.sectionInfo = new GlobalGeometrySectionInfoStruct(binaryReader);
     this.rigidNode = binaryReader.ReadShortBlockIndex1();
     this.flags = (Flags)binaryReader.ReadInt16();
     this.sectionData = ReadSectiondata(binaryReader);
     this.geometryBlockInfo = new GlobalGeometryBlockInfoStruct(binaryReader);
 }