api: add method to remove game objects from scene

This commit is contained in:
Adam
2020-11-16 22:12:58 -05:00
parent 661aca8475
commit 41245f7f89

View File

@@ -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);
}