I just joined greenfoot today and I know nothing about java. Please explain the different parts of the code.this is my code:
public class Crabmenu extends Actor
{
public void act()
{
if (Greenfoot.mouseClicked(this)) {
new Sandbg();
}
}
}

