Hi, was just wondering if there was anyway to access the class which contains the main method, which is where I am assuming contains the initialization of the different Actor objects that you put into your scenario. Thanks a lot.
In greenfoot, the main method is hidden. Greenfoot automatically constructs your initial world, which is where you jump in with your coding. You put code in your initial world constructor to create any initial actors needed and add them into the world (even if it is just calling a method to do it).