Package voodoo.collection.card

Examples of voodoo.collection.card.Card


    public void turn() {
        notifyListeners( Event.TURN_BEGIN_EVENT );
       
        // pick a card to play!
        // TODO: This is not the way it should work.
        Card toPlay = getNextMove();
        System.out.println( "Player " + _name + " plays " + toPlay.getName() );
        _played.add( toPlay );
        notifyListeners( Event.TURN_PLAY_EVENT );
       
        notifyListeners( Event.TURN_END_EVENT );
    }
View Full Code Here

TOP

Related Classes of voodoo.collection.card.Card

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.