I'm trying to enter code in the world class using the statement
/**
* This is the method that will be called to activate frenzy mode
*/
public void frenzyMode()
{
if(time<700)
{
myMusic.stop();
frenzyMusic.play();
showText("FRENZY!!!", 390, 25);
}
}
And I want to have it that the class is removed from the world to be replace with another class that is used for the frenzy mode. What do I do?

