Beispiel #1
0
 public LocalLogic()
 {
     game = new Game();
     colocateControllerBuilder = new LocalColocateControllerBuilder(game);
     startController           = new LocalStartController(game, colocateControllerBuilder);
     continueController        = new LocalContinueController(game);
 }
Beispiel #2
0
 public LocalStartController(Game game, LocalColocateControllerBuilder colocateControllerBuilder) : base(game)
 {
     Debug.Assert(colocateControllerBuilder != null);
     this.colocateControllerBuilder = colocateControllerBuilder;
 }