i believe line 37 is the 56 line in the class
public class Mw extends World
{
public static int life;
Bar bar = new Bar("", "Health", 20, 20);
Bar scoreBar = new Bar("Score", "points", 0, roundScore);
public static int score;
public Counter counter;
public static boolean canMove;
public static int money;
public static int roundScore;
public static int round;
/**
* Constructor for objects of class Mw.
*
*/
public Mw()
{
// Create a new world with 600x400 cells with a cell size of 1x1 pixels.
super(1100, 550, 1);
life = 20;
score = 0;
prepare();
money = 0;
round = 1;
canMove = true;
roundScore = 500;
upRound();
counter = new Counter();
addCounter();
public void act()
{
randomAddAnts();
endScreen();
addRoundOver();
bar.setValue(life);
scoreBar.setValue(score);
}
}public static int roundScore = 500;