aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/example/ExampleMod.java
diff options
context:
space:
mode:
authornea <romangraef@gmail.com>2022-10-06 20:40:09 +0200
committerLinnea Gräf <nea@nea.moe>2024-08-08 12:50:21 +0200
commit80ef02479b4119a5a4b5e99bf05bd948170bd5b3 (patch)
tree0caa3553615f4f0570297d90b0e7c25a41819faf /src/main/java/com/example/ExampleMod.java
parentc1dabe37d8b43d90a682edde797df9b278ec4a47 (diff)
downloadforge1.8.9template-80ef02479b4119a5a4b5e99bf05bd948170bd5b3.tar.gz
forge1.8.9template-80ef02479b4119a5a4b5e99bf05bd948170bd5b3.tar.bz2
forge1.8.9template-80ef02479b4119a5a4b5e99bf05bd948170bd5b3.zip
Add kotlin to templatekotlin
Diffstat (limited to 'src/main/java/com/example/ExampleMod.java')
-rw-r--r--src/main/java/com/example/ExampleMod.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/main/java/com/example/ExampleMod.java b/src/main/java/com/example/ExampleMod.java
deleted file mode 100644
index 2ce1671..0000000
--- a/src/main/java/com/example/ExampleMod.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package com.example;
-
-import net.minecraft.client.renderer.GlStateManager;
-import net.minecraft.init.Blocks;
-import net.minecraftforge.fml.common.Mod;
-import net.minecraftforge.fml.common.event.FMLInitializationEvent;
-
-@Mod(modid = "examplemod", useMetadata=true)
-public class ExampleMod {
- @Mod.EventHandler
- public void init(FMLInitializationEvent event) {
- System.out.println("Dirt: " + Blocks.dirt.getUnlocalizedName());
- // Below is a demonstration of an access-transformed class access.
- System.out.println("Color State: " + new GlStateManager.Color());
- }
-}