示例#1
0
 internal GadgetInfo(Gadget Gadget, GadgetAttribute Attribute, string Mod)
 {
     this.Gadget    = Gadget;
     this.Attribute = Attribute;
     ModName        = Mod;
     Gadget.Info    = this;
 }
示例#2
0
 internal GadgetInfo(Gadget Gadget, GadgetAttribute Attribute, GadgetMod Mod)
 {
     this.Gadget    = Gadget;
     this.Attribute = Attribute;
     this.Mod       = Mod;
     ModName        = Mod.Name;
     Gadget.Info    = this;
 }