public int indexOf(Figure figure) { return children.indexOf(figure); }
/* space ship has died from some sort of collision */ public void kill(ArrayList movingObjects) { int index = movingObjects.indexOf(this); movingObjects.remove(index); }