summaryrefslogtreecommitdiff
path: root/forge-1.10.2-12.18.3.2281-mdk/src/main/java/com
diff options
context:
space:
mode:
authorLance5057 <Lance5057@gmail.com>2017-11-27 01:42:36 -0600
committerLance5057 <Lance5057@gmail.com>2017-11-27 01:42:36 -0600
commit47f9237e0afce2fcb2c214b5debdeda331d2d9e1 (patch)
tree687163434ac0c8ec511ea7494b608b1545e0175e /forge-1.10.2-12.18.3.2281-mdk/src/main/java/com
parentca59d88e0effef351498c6df46d5a24cafadc2df (diff)
Fixed up build.gradle
Added new materials, stats, and alloys
Diffstat (limited to 'forge-1.10.2-12.18.3.2281-mdk/src/main/java/com')
-rw-r--r--forge-1.10.2-12.18.3.2281-mdk/src/main/java/com/example/examplemod/ExampleMod.java20
1 files changed, 0 insertions, 20 deletions
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());
- }
-}