api: add GraphicsObject finished setter

This commit is contained in:
Adam
2022-01-14 17:59:14 -05:00
parent 07f96a6abb
commit e31bfa66fe

View File

@@ -72,4 +72,10 @@ public interface GraphicsObject extends Renderable
* @return
*/
boolean finished();
/**
* Set if this spotanim is done animating. If finished, the spotanim will despawn next frame.
* @param finished
*/
void setFinished(boolean finished);
}