Add support for disposing GUIs

This commit is contained in:
2021-04-09 12:43:04 +02:00
parent cf20f390b5
commit 9bc79e940e
2 changed files with 16 additions and 5 deletions

View File

@@ -47,6 +47,8 @@ public interface Context extends Updatable, Renderable, Disposable {
GUI newGUI();
void disposeGUI(GUI gui);
Sound createSound(String soundUid);
void withDatabase(UncheckedConsumer<Connection, SQLException> consumer);