public SquarePlatformManager(SquareWorldModel squareWorldModel) : base(squareWorldModel)
 {
 }
 public SquareGameState(float xPos, float yPos, float xSpeed, Platform agentPlatform, SquareWorldModel model, GraphLink closestLink)
     : base(xPos, yPos, xSpeed, agentPlatform, closestLink)
 {
     _model = model;
 }
Beispiel #3
0
 public SquareLearningCenter(SquareWorldModel model) : base("SquareLearning", model)
 {
 }
 public SquareGameState(float xPos, float yPos, float xSpeed, Platform agentPlatform, SquareWorldModel model)
     : base(xPos, yPos, xSpeed, agentPlatform)
 {
     _model = model;
 }