Topic 1 - Variables and Data Types
Topic 2 - Conditionals and Strings
Topic 3 - Loops
Topic 4 - Arrays
Topic 5 - File Handling
Semester 1 Projects
Topic 6 - Classes/Objects and Methods
Topic 7 - ArrayLists
Semester Projects

Part 1e: Setting Everything Up

The Run() method is just like the main() method in other programs. This is where everything will used from. 

In MainClass.java, in the Run() method:

  • Initialize the score to 0
  • Use the methods from parts 1a-1d to set up the game. 

***Make sure to not remove addKeyListeners(); so that your keys will work.