Package mage.filter.predicate

Examples of mage.filter.predicate.ObjectPlayer


    public boolean match(Card card, UUID playerId, Game game) {
        if (!this.match(card, game)) {
            return false;
        }
       
        return Predicates.and(extraPredicates).apply(new ObjectPlayer(card, playerId), game);
    }
View Full Code Here


    public boolean match(StackObject stackObject, UUID playerId, Game game) {
        if (!this.match(stackObject, game)) {
            return false;
        }

        return Predicates.and(extraPredicates).apply(new ObjectPlayer(stackObject, playerId), game);
    }
View Full Code Here

TOP

Related Classes of mage.filter.predicate.ObjectPlayer

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.