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>2025-04-03 18:01:22 +0200
commit48edc09cef348641995ab66bdf4c0ecb5fd622e6 (patch)
tree120c5cfd6c03c1a2fa412ece943c7e50228ccc18 /src/main/java/com/example/ExampleMod.java
parent08479b3d0069b913a8adbb422af83f53685634c6 (diff)
downloadForge1.8.9Template-kotlin.tar.gz
Forge1.8.9Template-kotlin.tar.bz2
Forge1.8.9Template-kotlin.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());
- }
-}