private Fish myShip;
public Shot(Fish myShip)
{
this.myShip=myShip;
}
public void eat ()
{
Actor zombie;
zombie=getOneObjectAtOffset(0,0,Zombie.class);
if(zombie!=null)
{
World world;
hitAZombie();
world=getWorld();
world.removeObject(zombie);
}
}

