Uses of Class
com.TeamHEC.LocomotionCommotion.Card.Card

Packages that use Card
com.TeamHEC.LocomotionCommotion.Card   
com.TeamHEC.LocomotionCommotion.Player   
 

Uses of Card in com.TeamHEC.LocomotionCommotion.Card
 

Subclasses of Card in com.TeamHEC.LocomotionCommotion.Card
 class CoalCard
           
 class ElectricCard
           
 class GoFasterStripesCard
           
 class GoldCard
           
 class NuclearCard
           
 class OilCard
           
 class ResourceCard
           
 class TeleportCard
           
 

Fields in com.TeamHEC.LocomotionCommotion.Card with type parameters of type Card
static java.util.ArrayList<Card> Game_CardHand.Game_CardHandManager.newcards
           
 

Methods in com.TeamHEC.LocomotionCommotion.Card that return Card
 Card CardFactory.createAnyCard()
          Creates a random card from either the magicCardList or resourceCardList.
 Card CardFactory.createMagicCard()
          Creates a random card from the set of magic cards.
 Card CardFactory.createResourceCard()
          Creates a random card from the set of resource cards.
 Card CardActor.getCard()
          returns the selected card
 

Methods in com.TeamHEC.LocomotionCommotion.Card with parameters of type Card
 void Game_CardHand.Game_CardHandManager.addCard(Card newCard)
          Adds given card to hand if hand is not full.
 void CardActor.setCard(Card card)
          Sets the selected card
 

Uses of Card in com.TeamHEC.LocomotionCommotion.Player
 

Methods in com.TeamHEC.LocomotionCommotion.Player that return types with arguments of type Card
 java.util.ArrayList<Card> Player.getCards()
           
 

Methods in com.TeamHEC.LocomotionCommotion.Player with parameters of type Card
 void Player.addCard(Card card)
           
 void Player.discardCard(Card card)
           
 

Constructor parameters in com.TeamHEC.LocomotionCommotion.Player with type arguments of type Card
Player(java.lang.String name, Score score, Gold gold, Coal coal, Electric electric, Nuclear nuclear, Oil oil, java.util.ArrayList<Card> cards, java.util.ArrayList<Goal> goals, java.util.ArrayList<Train> trains)