=== SHORT TERM ===




=== LONG TERM ===

Game will contain multiple levels.
Game will progress from one level to another sequentially.

Level:
	Stage 1: Shows # of balls needed, # of balls in play, status of previous attempt (if any), and current accumulated score.
	Stage 2: Initialize arena
	Stage 3: Wait around until the arena reports that the game is over
	Stage 4: Determine whether the player succeeded in getting # of balls needed
	Stage 5: Return to Stage 1 on FAILURE, else continue
	Stage 6: Attempt to load the next level
	Stage 7: Return to Stage 1 on SUCCESS, else continue
	Stage 8: Break out of loop, returning accumulated score to the Game

When the Level is unable to load "the next level" (Stage 7 above), it indicates that no other levels have been specified, and that the game is over.  At this point, control returns to the game, which can add the score to High Scores, return to the Main Menu, etc.

