public BoardRowViewModel(GameViewModel game, int rowNumber, PlayerOptionsViewModel options) { this.Game = game; this.rowNumber = rowNumber; this.Options = options; }
public StopTimer(GameViewModel vm) { _viewModel = vm; }
public BoardViewModel(GameViewModel game, PlayerOptionsViewModel options) { this.Game = game; this.Options = options; }