i am making a game, and have a select level screen. I can't figure out how to get the user to select 1 ,because it is a picture ,I didn't do individual buttons, should I? It can't be too complicated, it is a school project
public class ButtonOne extends Actor
{
public void act()
{
if (Greenfoot.mouseClicked(this))
{
Greenfoot.setWorld(new LevelOne());
}
}