api: add method to remove game objects from scene

This commit is contained in:
Adam
2020-11-16 22:21:27 -05:00
parent 661aca8475
commit 41245f7f89
@@ -38,4 +38,10 @@ public interface Scene
int getDrawDistance();
void setDrawDistance(int drawDistance);
/**
* Remove a game object from the scene
* @param gameObject
*/
void removeGameObject(GameObject gameObject);
}