/// <summary>
 /// Command which contains a multitude of command behaviors, to allow for easy disable and callback mechanisms
 /// </summary>
 public CompositionCommand(params IAsyncCompositeCommand[] behaviors)
 {
     Compositions.AddRange(behaviors);
 }
Exemple #2
0
 /// <summary>
 /// Command which contains a multitude of command behaviors, to allow for easy disable and callback mechanisms
 /// </summary>
 public CompositionCommand(params IBehavior[] behaviors)
 {
     Compositions.AddRange(behaviors);
 }