Examples of HintBundle


Examples of csa.jportal.ai.enhancedAI.enhancedHints.HintBundle

   
   
    public static boolean isPlayerDamageCard(CardSim card, String key)
    {
        boolean ret = false;
        HintBundle bundle = new HintBundle(TY_DAMAGE, SY_DAMAGE);
        ret = hasHint(card.getCard(), key, bundle);

        bundle = new HintBundle(TA_IS_PLAYER, TA_IS_OPPONENT, TA_IS_OWNER, S_IS_PLAYER, S_IS_OPPONENT, S_IS_OWNER);
        ret = ret && hasHint(card.getCard(), key, bundle);

        return ret;
    }
View Full Code Here
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.