Exemple #1
0
 public BoardRowViewModel(GameViewModel game, int rowNumber, PlayerOptionsViewModel options)
 {
     this.Game      = game;
     this.rowNumber = rowNumber;
     this.Options   = options;
 }
Exemple #2
0
 public StopTimer(GameViewModel vm)
 {
     _viewModel = vm;
 }
Exemple #3
0
 public BoardViewModel(GameViewModel game, PlayerOptionsViewModel options)
 {
     this.Game    = game;
     this.Options = options;
 }