aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/crossmod/holoinventory/HoloInventory.java
diff options
context:
space:
mode:
authormiozune <miozune@gmail.com>2023-09-15 20:24:28 +0900
committerGitHub <noreply@github.com>2023-09-15 13:24:28 +0200
commitdcb998cecc6bf3b97a5274958034587f32c43079 (patch)
treec2c41268049876554d79a22d045ae63f627d499c /src/main/java/gregtech/crossmod/holoinventory/HoloInventory.java
parentb31052879e7601dbfea4c7fb53b94119c7bbf5c6 (diff)
downloadGT5-Unofficial-dcb998cecc6bf3b97a5274958034587f32c43079.tar.gz
GT5-Unofficial-dcb998cecc6bf3b97a5274958034587f32c43079.tar.bz2
GT5-Unofficial-dcb998cecc6bf3b97a5274958034587f32c43079.zip
Add HoloInventory compat (#2292)
Diffstat (limited to 'src/main/java/gregtech/crossmod/holoinventory/HoloInventory.java')
-rw-r--r--src/main/java/gregtech/crossmod/holoinventory/HoloInventory.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main/java/gregtech/crossmod/holoinventory/HoloInventory.java b/src/main/java/gregtech/crossmod/holoinventory/HoloInventory.java
new file mode 100644
index 0000000000..d7dcdcf4b5
--- /dev/null
+++ b/src/main/java/gregtech/crossmod/holoinventory/HoloInventory.java
@@ -0,0 +1,10 @@
+package gregtech.crossmod.holoinventory;
+
+import net.dries007.holoInventory.compat.InventoryDecoderRegistry;
+
+public class HoloInventory {
+
+ public static void init() {
+ InventoryDecoderRegistry.register(new GT_InventoryDecoder());
+ }
+}