From caae62f9978b4c40e8cabcb45a76a8b92b6b2615 Mon Sep 17 00:00:00 2001 From: xX_MinecraftGamer123_Xx <73876072+Maximusbarcz@users.noreply.github.com> Date: Wed, 28 Sep 2022 21:53:41 +0200 Subject: Initial commit --- .../java/net/fabricmc/example/mixin/ExampleMixin.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/main/java/net/fabricmc/example/mixin/ExampleMixin.java (limited to 'src/main/java/net/fabricmc/example/mixin/ExampleMixin.java') diff --git a/src/main/java/net/fabricmc/example/mixin/ExampleMixin.java b/src/main/java/net/fabricmc/example/mixin/ExampleMixin.java new file mode 100644 index 0000000..356cb38 --- /dev/null +++ b/src/main/java/net/fabricmc/example/mixin/ExampleMixin.java @@ -0,0 +1,16 @@ +package net.fabricmc.example.mixin; + +import net.fabricmc.example.ExampleMod; +import net.minecraft.client.gui.screen.TitleScreen; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; + +@Mixin(TitleScreen.class) +public class ExampleMixin { + @Inject(at = @At("HEAD"), method = "init()V") + private void init(CallbackInfo info) { + ExampleMod.LOGGER.info("This line is printed by an example mod mixin!"); + } +} -- cgit