Can somebody help me with this?
If the Bullets hit this Enemy, the hole prgramm stop and i don`t why
public void zerstöreDeutschgegner()
[code]public void zerstöreDeutschgegner()
{
Actor Deutschgegner = getOneIntersectingObject(Deutschgegner.class);
if(Deutschgegner != null)
{
getWorld().removeObject(Deutschgegner);
getWorld().removeObject(this);
}
}
