I need to invoke a void method before call another method.
I have this method
public void shuffle() {
various = new Random();
currentCard = 0;
currentTotal1 = 0;
currentTotal2 = 0;
for (int first = 0; first < deckOfCards.length; first++) {
int second = various.nextInt(number_cards);
Card temp = deckOfCards[first];
deckOfCards[first] = deckOfCards[second];
deckOfCards[second] = temp;
}
}
And in another class I have:
public class GameRules {
final deck myDeckOfCards = new deck();
myDeckOfCards.shuffle(); //error here
// first
public ImageIcon GameRules1() {
return myDeckOfCards.giveCardPlayer1().getImage();
}
The basic problem is that I need to do shuffle in the deck of cards before show a card. Without shuffle method the order of cards is sequential
Any idea? If I put the method inside public ImageIcon GameRules1() doesn't give error, but I need shuffle all cards before game, no before each give card method.
thanks