summary refs log blame commit diff stats
path: root/src/main/java/net/fabricmc/example/mixin/ExampleMixin.java
blob: 356cb3889970b933058398d4a0aa3fe81e492f5d (plain) (tree)
1
2
3
4
5
6
7
8
9

                                   
                                       
                                                   




                                                                   
                         


                                                     
                                                                                        

         
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!");
	}
}