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)?
import greenfoot.*; public class Header extends World { public Header() { super(800, 600, 1); } public void started() { Greenfoot.setWorld(new Instructions()); } }