aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/anthonyhilyard/iceberg/IcebergServer.java
diff options
context:
space:
mode:
authorAnthony Hilyard <anthony.hilyard@gmail.com>2021-08-25 14:51:42 -0700
committerAnthony Hilyard <anthony.hilyard@gmail.com>2021-08-25 14:51:42 -0700
commitfca13e61adcfbdbf38497c20a2e41ef120ef1d13 (patch)
tree2fcf430a4de62639338bf9b360853bb46c5b9d90 /src/main/java/com/anthonyhilyard/iceberg/IcebergServer.java
downloadIceberg-fca13e61adcfbdbf38497c20a2e41ef120ef1d13.tar.gz
Iceberg-fca13e61adcfbdbf38497c20a2e41ef120ef1d13.tar.bz2
Iceberg-fca13e61adcfbdbf38497c20a2e41ef120ef1d13.zip
Initial commit.
Diffstat (limited to 'src/main/java/com/anthonyhilyard/iceberg/IcebergServer.java')
-rw-r--r--src/main/java/com/anthonyhilyard/iceberg/IcebergServer.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/main/java/com/anthonyhilyard/iceberg/IcebergServer.java b/src/main/java/com/anthonyhilyard/iceberg/IcebergServer.java
new file mode 100644
index 0000000..c5baa64
--- /dev/null
+++ b/src/main/java/com/anthonyhilyard/iceberg/IcebergServer.java
@@ -0,0 +1,19 @@
+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.server.FMLServerStartingEvent;
+
+@Mod.EventBusSubscriber(modid = Loader.MODID, bus = Bus.MOD, value = Dist.DEDICATED_SERVER)
+public class IcebergServer
+{
+ public IcebergServer()
+ {
+ }
+
+ public void onServerStarting(FMLServerStartingEvent event)
+ {
+
+ }
+}