blob: dcccf08780e2f2976937b98242743184150d98cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package moe.nea.firmament.mixins;
import net.minecraft.entity.player.PlayerInventory;
import org.spongepowered.asm.mixin.Mixin;
@Mixin(PlayerInventory.class)
public class MixinPlayerInventory {
}
|