This is the link to the Analysis Description: Analysis - Game
###Time Review
###Commits
You can put links to commits like this: My favorite commit
###Conclusions
###Status
- Bullets are made with asterisks
- You can order things with numbers.
###Design
You can put blocks of code in here like this:
/**
* Returns sum of all values in given list.
*/
public int getTotal (Collection<Integer> data) {
int total = 0;
for (int d : data) {
total += d;
}
return total;
}
###Alternate Designs
Here is another look at my design: