Beispiel #1
0
 public MTST(int APIversion, EventHandler handler, MTST basis)
     : base(APIversion, handler, null)
 {
     this.version  = basis.version;
     this.nameHash = basis.nameHash;
     this.index    = new GenericRCOLResource.ChunkReference(requestedApiVersion,
                                                            handler, basis.index);
     this.list = basis.list == null ? null : new EntryList(OnRCOLChanged, basis.list, basis.version);
 }
Beispiel #2
0
 public MTST(int apiVersion, EventHandler handler, MTST basis)
     : base(apiVersion, handler, null)
 {
     this.version  = basis.version;
     this.nameHash = basis.nameHash;
     this.index    = new GenericRCOLResource.ChunkReference(requestedApiVersion,
                                                            handler, basis.index);
     this.matdList200 = basis.matdList200 == null ? null : new Type200EntryList(OnRCOLChanged, basis.matdList200);
     this.matdList300 = basis.matdList300 == null ? null : new Type300EntryList(OnRCOLChanged, basis.matdList300);
 }
Beispiel #3
0
 public MTST(int APIversion, EventHandler handler, MTST basis)
     : this(APIversion, handler, basis.nameHash, basis.index, basis.list)
 {
 }