summary refs log tree commit diff stats
path: root/src/main/java/net/fabricmc/example/mixin/ExampleMixin.java
blob: 0fc8f6822af8145df6e586a6f0acb4c81fc8c391 (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.MinecraftClient;
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(MinecraftClient.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!");
	}
}