package chess2;
public class Decision {
   int xPos, yPos;
   DeciType type = DeciType.MOVES;
   ChessPiece mover;
   boolean hasSolution = false;
   public Decision(int XPOS, int YPOS){

       xPos = XPOS;
       yPos = YPOS;
   }
   public Decision(int XPOS, int YPOS, DeciType DECITYPE){

       xPos = XPOS;
       yPos = YPOS;
       type = DECITYPE;
   }
   public Decision(boolean solution)
   {
       this.hasSolution = solution;
   }
}
