diff options
author | nea <romangraef@gmail.com> | 2022-10-06 20:40:09 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-04-03 18:01:22 +0200 |
commit | 48edc09cef348641995ab66bdf4c0ecb5fd622e6 (patch) | |
tree | 120c5cfd6c03c1a2fa412ece943c7e50228ccc18 /src/main/java/com/example/ExampleMod.java | |
parent | 08479b3d0069b913a8adbb422af83f53685634c6 (diff) | |
download | Forge1.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.java | 16 |
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()); - } -} |