Package org.darkhelm.dragonchess.shared.enums

Examples of org.darkhelm.dragonchess.shared.enums.MoveTypes


    }

    // get the board set's hash for this move.
    hash = set.hash();

    MoveTypes type = null;

    // Define what the type of the move is.
    if (getType() == MoveTypes.FROM_AFAR) {
      type = getType();
    } else if (score == 0) {
View Full Code Here


      }

      // Get the hash for the board set for this move.
      hash = set.hash();

      MoveTypes type = null;

      // The user will be told if the move captures or just moves the
      // piece.
      if (score == 0) {
        type = MoveTypes.MOVE;
View Full Code Here

TOP

Related Classes of org.darkhelm.dragonchess.shared.enums.MoveTypes

Copyright © 2018 www.massapicom. 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.