Esempio n. 1
0
            void Parse(Stream s)
            {
                var br = new BinaryReader(s);

                this.matdLabel = (MainWallHeight)br.ReadByte();
                this.matdRef   = new TGIBlock(kRecommendedApiVersion, null, TGIBlock.Order.ITG, s);
            }
Esempio n. 2
0
 void MakeNew()
 {
     this.matdLabel = (MainWallHeight)0x0;
     this.matdRef   = new TGIBlock(kRecommendedApiVersion, null, TGIBlock.Order.ITG);
 }
Esempio n. 3
0
 public WallMATDEntry(int APIversion, EventHandler handler, MainWallHeight matdLabel, TGIBlock matdRef)
     : base(APIversion, handler)
 {
     this.matdLabel = matdLabel;
     this.matdRef   = new TGIBlock(kRecommendedApiVersion, handler, TGIBlock.Order.ITG, matdRef);
 }