Once clara has eaten all the levels she will advance to the next level. im having trouble advancing to the next level.
public final char LEVEL_2 = {
//drawing of world blah blah
};
if ( allLeavesEaten() )
{
getCurrentLevelNumber();
if ( getCurrentLevelNumber() == 1)
advanceToLevel(char LEVEL_2);
}
im not sure how to solve this

