How do you call a method from another class?
MyWorld world = (MyWorld) getWorld(); world.endGame();
int h = getWorld().getHeight();
Counter counter = getWorld().getCounter();
Counter counter = ((MyWorld)getWorld()).getCounter();