Pandemic Part 1
- Let's just make a simple interface in Java. Get input from the
user and print it out. It's all just in text mode. We might add
a GUI later.
- Put in a loop until the game is over. In this case
process a ueser command, quit, that ends the game.
- Let's add another command for location. Put the user in a location
and print out the location. Eventually we'll need a graph of cities
and how they're connected. I did this with an array of Strings, one
for each city, and a 2D array of integers for connections.
- Add a UI command, actions, to print all the allowable actions.
- Add move to enable the user to move from one city to an adjacent
city.