/**
 * Stores a single high score for a video game.
 * An example of a class with only instance variables (state, but no behavior).
 *
 * @author Zach Tomaszewski
 */
public class HighScore {
  public String name;
  public int score;
}
