I've got a ScoreImage in my game, but when I place this code in my world:
public void UpdateScore(int newScore)
{
scoreCounter.add(newScore);
}
I get a error: Cannot find symbol - method add(int)
can somebody help me please?

