What calls the World Constuctor when when the game starts in greenfoot? I want to add two worlds side by side, one a "Store" and one the "BalloonWorld", but how do I construct the "Store" world, with the "BalloonWorld" at the same time?
World w = new Store(); Greenfoot.setWorld(w);
// instance field in BalloonWorld class
Store store;
// in the BalloonWorld constructor
store = new Store(this);
// instance field in the Store class
World world;
// begin the Store constructor with
public Store(World w)
{
// super constructor call -- 'super(int, int, int);'
world = w;
// rest of constructor
}