Beispiel #1
0
 public GameEffectInstance StartInstance(GameEffectInstance instance)
 {
     if (instance.Parameters.ContainsKey("Overwrite"))
     {
         throw new NotImplementedException();
     }
     else
     {
         GameEffect.AllInstances.Add(instance);
     }
     OnStart.Raise(instance);
     return(instance);
 }
Beispiel #2
0
 public void AnnounceStart(GameEffectInstance instance)
 {
     OnStart.Raise(instance);
 }