Package game

Examples of game.Deck


    /**
     * Creates the behaviors and PlayerController used in the game
     */
    public WarController()
    {
        Deck dk = Deck.getInstance();
        dk.reset();
        dk.shuffle();
        timer = WarTimer.getInstance();

        CheatingBehavior player1 = new NotCheating();
        CheatingBehavior player2 = new Cheating();
        playerCon = new PlayerController(player1, player2);
View Full Code Here

TOP

Related Classes of game.Deck

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.