I cant find a way to know how to shoot a bullet in the direction of my mouse click.
if (Greenfoot.mouseClicked(null))
{
Bullet bullet = new Bullet()
getWorld().addObject(bullet, getX(), getY());
MouseInfo mouse = Greenfoot.getMouseInfo();
bullet.turnTowards(mouse.getX(), mouse.getY());
}