Beispiel #1
0
 public Player(Utils.PlayerSide side)
 {
     this.side = side;
 }
Beispiel #2
0
 public AgentPlayer(Utils.PlayerSide side) : base(side)
 {
     LoadStates();
     return;
 }
Beispiel #3
0
 public AgentPlayer(Utils.PlayerSide side, double ProbingProbability) : base(side)
 {
     this.probingProbability = ProbingProbability;
     LoadStates();
 }
Beispiel #4
0
 public HumanPlayer(Utils.PlayerSide side) : base(side)
 {
 }