public Aggregates(ref Action OnUpdate, ICoreMessager coreMessager) { DebugAggregate = new DebugAggregate(ref OnUpdate, coreMessager); CharacterSelectionAggregate = new CharacterSelectionAggregate(ref OnUpdate); CharacterAggregate = new CharacterAggregate(ref OnUpdate); }
public SelectCharacterCommand(CharacterSelectionAggregate characterSelectionAggregate) { this.characterSelectionAggregate = characterSelectionAggregate; }