From 7de0e8e7e09e3428c17ca9717c21c02469c31b76 Mon Sep 17 00:00:00 2001
From: Linnea Gräf <nea@nea.moe>
Date: Wed, 16 Oct 2024 19:24:24 +0200
Subject: Add edit backpacks button to /firm storage

---
 src/main/kotlin/gui/EmptyComponent.kt | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 src/main/kotlin/gui/EmptyComponent.kt

(limited to 'src/main/kotlin/gui/EmptyComponent.kt')

diff --git a/src/main/kotlin/gui/EmptyComponent.kt b/src/main/kotlin/gui/EmptyComponent.kt
new file mode 100644
index 0000000..13efa89
--- /dev/null
+++ b/src/main/kotlin/gui/EmptyComponent.kt
@@ -0,0 +1,17 @@
+package moe.nea.firmament.gui
+
+import io.github.notenoughupdates.moulconfig.gui.GuiComponent
+import io.github.notenoughupdates.moulconfig.gui.GuiImmediateContext
+
+class EmptyComponent : GuiComponent() {
+	override fun getWidth(): Int {
+		return 0
+	}
+
+	override fun getHeight(): Int {
+		return 0
+	}
+
+	override fun render(context: GuiImmediateContext) {
+	}
+}
-- 
cgit