예제 #1
0
 public DDTObject(DDT_Obj_Type type, string name)
     : base()
 {
     //this.location = loc;
     this.type = type;
     this.name = name;
 }
예제 #2
0
 public DDTObject(DDT_Obj_Type type, string name,  List<DDT_Obj_Property> properties, List<DDT_Obj_Event> events)
     : base()
 {
     //this.location = loc;
     this.type = type;
     this.name = name;
     this.properties = properties;
     this.events = events;
 }