How do I make an instructions page, where I tell the user about the game and how to play it before the game begins(before myWorld runs)?


1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import greenfoot.*; public class Header extends World { public Header() { super ( 800 , 600 , 1 ); } public void started() { Greenfoot.setWorld( new Instructions()); } } |