Exemple #1
0
 public GameManager(IUIDrawing currentUi)
 {
     _currentUI             = currentUi;
     this._serviceContainer = new IoCContainer();
 }
Exemple #2
0
 public CurrentGame(IUIDrawing ui, ILocation location, int maxStep)
 {
     this._ui       = ui;
     this._location = location;
     _currentStep   = maxStep;
 }