Bounce BounceUp = Bounce();
Rubbish. You NEVER call a constructor directly.
Bounce bounceUp;
is the correct way to create an instance of the class. Variable names should NOT start with capital letters.
Bounce BounceUp = Bounce();
Rubbish. You NEVER call a constructor directly.
Bounce bounceUp;
is the correct way to create an instance of the class. Variable names should NOT start with capital letters.