コード例 #1
0
ファイル: ImprovedEMN.cs プロジェクト: MingStar/SimUniversity
 public ImprovedEMN(GameScores scores)
     : base(scores)
 {
 }
コード例 #2
0
 public GameEvaluation(GameScores scores)
 {
     Scores = scores;
 }
コード例 #3
0
ファイル: ExpectiMaxN.cs プロジェクト: MingStar/SimUniversity
 public ExpectiMaxN(GameScores scores)
 {
     _gameEvaluation = new GameEvaluation(scores);
     SetupPlayer = new SetupPlayer(_gameEvaluation);
 }