Hi
after updating greenfoot to the latest version, i get an erro in the marbel game it cant find getObjects(GoldMarble.class)
the code is in the bord class
private Marble getGoldMarble()
{
List<Actor> marbles = getObjects (GoldMarble.class);
if (marbles.size() == 0) {
return null;
}
else {
return (Marble) marbles.get(0);
}
}
do you have an solution?
thanks
