I am working on a little tiny game, where there is a Attacker and a Defender.
Player Attacker = new Player();
Player Deffender = new Player();
}
}
class Player{
int armees = 0;
int tarningar = 0;
Dice Dices[];
Player(){
armees = 10;
// if object name is Attacker, tarninger = 3, if defender = 2
Dices= new Dice[tarningar];
for(int i=0;i<Dices.length;i++){
Dices[i]=new Dice();
}
}
}
I have commented inside the code above, where i wish to have a if statement to determine how many dices it should have.
If this is not possible to do, another way of doing this maybe?
I also tried to
Attacker.tarningar = 3;
Deffender.tarningar = 2;
right under where the object gets defined in main, but it wont work, because it has already ran Player() inside class..
(im still new to java) thanks
attackeranddefenderand alsodices. This makes it easy to tell them apart from class names likePlayerandDice. It is also standard Java convention. – Erick Robertson May 25 '11 at 15:42