コード例 #1
0
ファイル: AI.cs プロジェクト: dgopstein/awkward-simulator
 public AI(GameState state, PlayerId pId, Heuristic heuristic)
 {
     this.pId = pId;
     this.forwardModel = new ForwardModel(state);
     this.heuristic = heuristic;
 }
コード例 #2
0
ファイル: AI.cs プロジェクト: dgopstein/awkward-simulator
 public abstract List<Input> nextInputList(GameState state, PlayerId pId, Heuristic heuristic);
コード例 #3
0
ファイル: AI.cs プロジェクト: dgopstein/awkward-simulator
 public override List<Input> nextInputList(GameState state, PlayerId pId, Heuristic heuristic)
 {
     return new List<Input>() { new Input () };
 }