thingsToRemove.add(deer);
}
}
if (thing instanceof Movable) {
Movable movable = (Movable) thing;
movable.accelerate(fps, 0, 0, -9.8);
Vector3d reqMoveVector = movable.getReqMoveVector(fps);
moveMovable(movable, reqMoveVector, tmp);
}
if (thing instanceof BlockManipulator) {
BlockAction action = ((BlockManipulator) thing)
.getBlockAction();