Hi in my main world while the game isnt running I display an intro text with games name, instructions and etc. When I run the game I want to remove that intro. Cant get it working...
public MainWorld()
{
super(800, 400, 1);
Intro intro = new Intro();
addObject(intro, getWidth()/2, getHeight()/2);
}
public void act()
{
removeObject(intro);
}

