View Single Post
  #3 (permalink)  
Old 11-13-2007, 08:32 AM
Kinnikinnick Kinnikinnick is offline
Member
 
Join Date: Nov 2007
Posts: 2
Kinnikinnick is on a distinguished road
thx for the tip Ninja!

Problem with it tho... (I forgot to mention this earlier)

i need to give each card it's own object name so I can use this included method:

Code:
/** * Add a single card to the deck. * @param a Card object */ public void addCard(Card newCard) { deck.add(newCard); // add a card to the deck }
Reply With Quote