|
|
|
@ -1,12 +1,12 @@
|
|
|
|
|
package net.fabricmc.example.mixin;
|
|
|
|
|
|
|
|
|
|
import net.minecraft.client.MinecraftGame;
|
|
|
|
|
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(MinecraftGame.class)
|
|
|
|
|
@Mixin(MinecraftClient.class)
|
|
|
|
|
public class ExampleMixin {
|
|
|
|
|
@Inject(at = @At("HEAD"), method = "init()V")
|
|
|
|
|
private void init(CallbackInfo info) {
|
|
|
|
|