initial commit
build / build (push) Has been cancelled

This commit is contained in:
2026-06-18 09:15:06 +01:00
commit dd42e078ac
209 changed files with 1854 additions and 0 deletions
@@ -0,0 +1,15 @@
package dev.zxq5.mixin;
import net.minecraft.server.MinecraftServer;
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(MinecraftServer.class)
public class ExampleMixin {
@Inject(at = @At("HEAD"), method = "loadLevel")
private void init(CallbackInfo info) {
// This code is injected into the start of MinecraftServer.loadLevel()V
}
}