Naming Conventions

Summary


Everything starts with a lowercase letter except for class names
(and the .java filename which must match the class name).
You can never use spaces in names of anything in Java.
Use camelCase to name things with more than one word (eg. int enemyHitPoints = 200;)
Decades ago, people used underscores: int enemy_hit_points = 200;

Indenting