Hey,
so i have this two methods in my enemy actor
public void gone()
{
score ();
getWorld().removeObject(this);
}
public void score()
{
level1 o= (level1)getWorld();
o.AddPoint(1);
}
And AddPoint is one method in the first level
my question is how can i add score in my second level by killing the same enemy

