aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/anthonyhilyard/iceberg/IcebergClient.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/anthonyhilyard/iceberg/IcebergClient.java')
-rw-r--r--src/main/java/com/anthonyhilyard/iceberg/IcebergClient.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/main/java/com/anthonyhilyard/iceberg/IcebergClient.java b/src/main/java/com/anthonyhilyard/iceberg/IcebergClient.java
new file mode 100644
index 0000000..3a860a2
--- /dev/null
+++ b/src/main/java/com/anthonyhilyard/iceberg/IcebergClient.java
@@ -0,0 +1,26 @@
+package com.anthonyhilyard.iceberg;
+
+import net.minecraftforge.api.distmarker.Dist;
+import net.minecraftforge.fml.common.Mod;
+import net.minecraftforge.fml.common.Mod.EventBusSubscriber.Bus;
+import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent;
+
+@Mod.EventBusSubscriber(modid = Loader.MODID, bus = Bus.MOD, value = Dist.CLIENT)
+public class IcebergClient
+{
+ public IcebergClient()
+ {
+ }
+
+ public void onClientSetup(FMLClientSetupEvent event)
+ {
+ event.enqueueWork(new Runnable()
+ {
+ @Override
+ public void run()
+ {
+
+ }
+ });
+ }
+}