aboutsummaryrefslogtreecommitdiff
path: root/src/testmod/java/dev/isxander/yacl/test/mixins
diff options
context:
space:
mode:
Diffstat (limited to 'src/testmod/java/dev/isxander/yacl/test/mixins')
-rw-r--r--src/testmod/java/dev/isxander/yacl/test/mixins/TitleScreenMixin.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/testmod/java/dev/isxander/yacl/test/mixins/TitleScreenMixin.java b/src/testmod/java/dev/isxander/yacl/test/mixins/TitleScreenMixin.java
deleted file mode 100644
index eac9ff4..0000000
--- a/src/testmod/java/dev/isxander/yacl/test/mixins/TitleScreenMixin.java
+++ /dev/null
@@ -1,30 +0,0 @@
-package dev.isxander.yacl.test.mixins;
-
-import dev.isxander.yacl.test.config.GuiTest;
-import net.minecraft.client.gui.components.Button;
-import net.minecraft.client.gui.screens.Screen;
-import net.minecraft.client.gui.screens.TitleScreen;
-import net.minecraft.network.chat.Component;
-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;
-
-/**
- * For testing purposes! If you are using this as
- * an example, ignore this class!
- */
-@Mixin(TitleScreen.class)
-public abstract class TitleScreenMixin extends Screen {
- protected TitleScreenMixin(Component title) {
- super(title);
- }
-
- @Inject(method = "init", at = @At("RETURN"))
- private void injectTestButton(CallbackInfo ci) {
- addRenderableWidget(Button.builder(Component.literal("YACL"), button -> minecraft.setScreen(GuiTest.getModConfigScreenFactory(minecraft.screen)))
- .pos(0, 0)
- .width(50)
- .build());
- }
-}