first commit

This commit is contained in:
Adrian Siekierka 2018-11-03 23:22:32 +01:00
commit b755e01769
12 changed files with 495 additions and 0 deletions

View file

@ -0,0 +1,15 @@
package net.fabricmc.example.mixin;
import net.minecraft.client.MinecraftGame;
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)
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!");
}
}