Beispiel #1
0
 public EffectEventArgs(Effect effect)
 {
     this.effect = effect;
 }
Beispiel #2
0
 // Fires the UIOptionInvoked notification
 public virtual void OnUIOptionInvoked(Effect effect)
 {
     Logger.Debug ("Effect.OnUIOptionInvoked. Id:{0}", effect);
     if (UIOptionInvoked != null)
         UIOptionInvoked (this, new EffectEventArgs (effect));
 }