From 47f9237e0afce2fcb2c214b5debdeda331d2d9e1 Mon Sep 17 00:00:00 2001 From: Lance5057 Date: Mon, 27 Nov 2017 01:42:36 -0600 Subject: Fixed up build.gradle Added new materials, stats, and alloys --- .../main/java/com/example/examplemod/ExampleMod.java | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 forge-1.10.2-12.18.3.2281-mdk/src/main/java/com/example/examplemod/ExampleMod.java (limited to 'forge-1.10.2-12.18.3.2281-mdk/src/main/java/com') diff --git a/forge-1.10.2-12.18.3.2281-mdk/src/main/java/com/example/examplemod/ExampleMod.java b/forge-1.10.2-12.18.3.2281-mdk/src/main/java/com/example/examplemod/ExampleMod.java deleted file mode 100644 index f01de14..0000000 --- a/forge-1.10.2-12.18.3.2281-mdk/src/main/java/com/example/examplemod/ExampleMod.java +++ /dev/null @@ -1,20 +0,0 @@ -package com.example.examplemod; - -import net.minecraft.init.Blocks; -import net.minecraftforge.fml.common.Mod; -import net.minecraftforge.fml.common.Mod.EventHandler; -import net.minecraftforge.fml.common.event.FMLInitializationEvent; - -@Mod(modid = ExampleMod.MODID, version = ExampleMod.VERSION) -public class ExampleMod -{ - public static final String MODID = "examplemod"; - public static final String VERSION = "1.0"; - - @EventHandler - public void init(FMLInitializationEvent event) - { - // some example code - System.out.println("DIRT BLOCK >> "+Blocks.DIRT.getUnlocalizedName()); - } -} -- cgit v1.2.3