Example #1
0
 public XXCombo(XXCombo copy, XXEffects refEffects) : this(refEffects)
 {
     this._name     = copy._name;
     this._usage    = copy._usage;
     this.EffectIDs = new BindableValueList <Guid>(copy.EffectIDs.Items);
     this.RefreshAllEvents();
 }
Example #2
0
 public void SetRefEffects(XXEffects refEffects)
 {
     this.RefEffects = refEffects;
     foreach (var cb in this.Items)
     {
         cb.SetRefEffects(this.RefEffects);
     }
 }
Example #3
0
 public void SetRefEffects(XXEffects refEffects)
 {
     this.RefEffects = refEffects;
 }
Example #4
0
 public XXCombos(XXEffects refEffects) : this()
 {
     this.SetRefEffects(refEffects);
 }