public ParameterChange(Placeable target, Placeable launcher, DelegateSetter delegateSetter, T paramNewValue) : base(target, launcher)
 {
     this.delegateSetter = delegateSetter;
     this.paramNewValue  = paramNewValue;
 }
 public ParameterChange(ParameterChange <T> other) : base(other)
 {
     this.delegateSetter = other.delegateSetter;
     this.paramNewValue  = other.paramNewValue;
 }
Exemple #3
0
 public ParameterChange(Placeable cible, Placeable lanceur, DelegateSetter delegateSetter, T paramNewValue) : base(cible, lanceur)
 {
     this.delegateSetter = delegateSetter;
     this.paramNewValue  = paramNewValue;
 }