コード例 #1
0
ファイル: Aggregates.cs プロジェクト: Drhaax/LeGameru
 public Aggregates(ref Action OnUpdate, ICoreMessager coreMessager)
 {
     DebugAggregate = new DebugAggregate(ref OnUpdate, coreMessager);
     CharacterSelectionAggregate = new CharacterSelectionAggregate(ref OnUpdate);
     CharacterAggregate          = new CharacterAggregate(ref OnUpdate);
 }
コード例 #2
0
ファイル: Commands.cs プロジェクト: Drhaax/LeGameru
 public SelectCharacterCommand(CharacterSelectionAggregate characterSelectionAggregate)
 {
     this.characterSelectionAggregate = characterSelectionAggregate;
 }