I have a variable called score in one of my classes (public int score;) I need to change this from a different class. I am trying this: score = score - 20; but it does not work. It says "cannot find symbol - variable score"


1 | int worldScore = ((MyWorld)getWorld()).score; |
1 2 3 | World world = getWorld(); MyWorld myWorld = (MyWorld) world; int worldScore = myWorld.score; |