aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/example/ExampleMod.java
diff options
context:
space:
mode:
authoringle <inglettronald@gmail.com>2022-09-23 05:01:47 -0500
committeringle <inglettronald@gmail.com>2022-09-23 05:01:47 -0500
commitadd142c970d52d33e731fb3a30605a5ef1f128bd (patch)
tree5cad6bf99e2453481f3cbba220cbe6491b4ce625 /src/main/java/com/example/ExampleMod.java
parent033de65a180b64fc645036d142589f57956ea263 (diff)
downloadDulkirMod-add142c970d52d33e731fb3a30605a5ef1f128bd.tar.gz
DulkirMod-add142c970d52d33e731fb3a30605a5ef1f128bd.tar.bz2
DulkirMod-add142c970d52d33e731fb3a30605a5ef1f128bd.zip
Nothing works yet :+1:
Diffstat (limited to 'src/main/java/com/example/ExampleMod.java')
-rw-r--r--src/main/java/com/example/ExampleMod.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/main/java/com/example/ExampleMod.java b/src/main/java/com/example/ExampleMod.java
deleted file mode 100644
index c43c2c5..0000000
--- a/src/main/java/com/example/ExampleMod.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.example;
-
-import com.example.commands.Commands;
-import net.minecraft.init.Blocks;
-import net.minecraftforge.fml.common.Mod;
-import net.minecraftforge.fml.common.event.FMLInitializationEvent;
-import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
-
-@Mod(modid = "examplemod", version = "1.0.0")
-public class ExampleMod {
- public Commands commands;
-
- @Mod.EventHandler
- public void init(FMLInitializationEvent event) {
- System.out.println("Dirt: " + Blocks.dirt.getUnlocalizedName());
- }
-
- @Mod.EventHandler
- public void preinit(FMLPreInitializationEvent event) {
- this.commands = new Commands();
- }
-}