Beispiel #1
0
 public CLayerInfo(CR2WFile cr2w, CVariable parent, string name) : base(cr2w, parent, name)
 {
     ParentGroup = new CHandle <CLayerGroup>(cr2w, this, nameof(ParentGroup))
     {
         IsSerialized = true
     };
 }
 public IdHandle(CR2WFile cr2w, CVariable parent, string name) : base(cr2w, parent, name)
 {
     handlename = new CName(cr2w, this, "handlename");
     handle     = new CHandle <CBehaviorVariable>(cr2w, this, "handle");
 }
Beispiel #3
0
 public IdHandle(IRed3EngineFile cr2w, CVariable parent, string name) : base(cr2w, parent, name)
 {
     handlename = new CName(cr2w, this, "handlename");
     handle     = new CHandle <IEditableVariable>(cr2w, this, "handle");
 }