public void collide()
{
if(isTouching(Enemy.class))
{
Space.Loselife();
removeTouching(Enemy.class);
}
if(isTouching(EBullet.class))
{
Space.Loselife();
removeTouching(EBullet.class);
}
}
non-static method cannot be referenced from a static context
