Package com.jcloisterzone.game.capability

Examples of com.jcloisterzone.game.capability.DragonCapability


        case FAIRY:
            FairyCapability fCap = game.getCapability(FairyCapability.class);
            fCap.setFairyPosition(getFrom());
            break;
        case DRAGON:
            DragonCapability dCap = game.getCapability(DragonCapability.class);
            dCap.setDragonPosition(getFrom());
            break;
        default:
            throw new UnsupportedOperationException();
        }
    }
View Full Code Here

TOP

Related Classes of com.jcloisterzone.game.capability.DragonCapability

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.