/// <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); }
/// <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); }