コード例 #1
0
ファイル: GameEngine.cs プロジェクト: ClausFT/Battleships
 private void Initialize()
 {
     _player1.Board = BoardGeneratorService.GenerateRandomBoard();
     _player2.Board = BoardGeneratorService.GenerateRandomBoard();
 }
コード例 #2
0
ファイル: ChessGridViewModel.cs プロジェクト: wIksS/ChessWpf
 public ChessGridViewModel(ChessRulesService chessRules, BoardGeneratorService generator)
 {
     this.generator = generator;
     this.rules     = chessRules;
     this.Squares   = new ObservableCollection <Square>();
 }