Creating a basic tank game
I was hoping someone could help me write code to do the following.
How do you create a basic game in Java where two tanks battle each other?
I was hoping to use a die class to simulate rolling a number; a direction class to determine a direction (up, down, left, right) to move the tank; a client class to define the die and direction objects; and a tank class to define the x and y positions, armour, firepower, etc.

