UnKnown89 wrote...
<< Code Omitted >>
World class is above the error is on the actor class where a variable couldn't be found.
public void scoreCheck()
{
int score = scoreCounter.getScore();
if (score > maxScore)
{
maxScore = score;
if (maxScore == 100) addObject(new Helicopter(), 550, 500);
if (maxScore == 500) addObject(new Tank(), 550, 375);
}
}