Skip to content

Latest commit

 

History

History
53 lines (33 loc) · 1.01 KB

ANALYSIS.md

File metadata and controls

53 lines (33 loc) · 1.01 KB

CompSci 308: Game Analysis

This is the link to the Analysis Description: Analysis - Game

Project Journal

###Time Review

###Commits

You can put links to commits like this: My favorite commit

###Conclusions

Design Review

###Status

  • Bullets are made with asterisks
  1. 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:

This is cool, too bad you can't see it

Code Masterpiece