Package ee.ttu.cs.iti0011.iabb104231.k1.Player

Source Code of ee.ttu.cs.iti0011.iabb104231.k1.Player.MockupPlayer

package ee.ttu.cs.iti0011.iabb104231.k1.Player;

import ee.ttu.cs.iti0011.iabb104231.k1.Board.StateStorage.IntegersMapStateStorage;

public class MockupPlayer extends AbstractPlayer
{
  public MockupPlayer()
  {
    super();
    setStorage(new IntegersMapStateStorage());
  }
  public Integer yourNextMove()
  {
    return null;
  }
 
  public void makeMove()
  {
   
  }
}
TOP

Related Classes of ee.ttu.cs.iti0011.iabb104231.k1.Player.MockupPlayer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.