summary refs log tree commit diff stats
path: root/src/main/java/net/fabricmc/example/mixin/ExampleMixin.java
blob: 83ee1a89d5f191840b53cbeed655f3c5832b2e34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package net.fabricmc.example.mixin;

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) {
		System.out.println("This line is printed by an example mod mixin!");
	}
}