So differences between:
and
are
The 1. one is for created Actor(without greenfoot.Actor and java.lang.Object classes)
and the 2. one is for inplement greenfoot.Actor and java.lang.Object classes?
private static Actor scoreText;
scoreText = getNewStillActor(); public static Actor getNewStillActor() { return new Actor() { //public void setLocations(int x, int y){} }; }