Package clueless.model.decks

Examples of clueless.model.decks.CharacterDeck


    controller.addMessageEventListener(this);
   
    //initialize other game variables
    players = new Vector<Player>();
    spaces = new Vector<Location>();
    characterDeck = new CharacterDeck(controller);
    weaponDeck = new WeaponDeck(controller);
    roomDeck = new LocationDeck(controller);
    gamePieces = new Vector<GamePiece>();
    theoriesSuggested = new Vector<Theory>();
    caseFile = new CaseFile((CharacterCard) characterDeck.getNextCard(),
View Full Code Here

TOP

Related Classes of clueless.model.decks.CharacterDeck

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.