2020-09-27 18:49:08 +02:00
|
|
|
package com.minelittlepony.unicopia.mixin;
|
|
|
|
|
|
|
|
import org.spongepowered.asm.mixin.Mixin;
|
2021-08-19 21:24:42 +02:00
|
|
|
import org.spongepowered.asm.mixin.Mutable;
|
2024-04-18 22:09:15 +02:00
|
|
|
import org.spongepowered.asm.mixin.gen.Accessor;
|
2020-09-27 18:49:08 +02:00
|
|
|
|
|
|
|
import net.minecraft.block.entity.BlockEntity;
|
2021-08-04 15:38:03 +02:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2020-09-27 18:49:08 +02:00
|
|
|
|
|
|
|
@Mixin(BlockEntity.class)
|
2024-04-18 22:09:15 +02:00
|
|
|
public interface MixinBlockEntity {
|
2021-08-19 21:24:42 +02:00
|
|
|
@Mutable
|
2024-04-18 22:09:15 +02:00
|
|
|
@Accessor("pos")
|
|
|
|
void setPos(BlockPos pos);
|
2020-09-27 18:49:08 +02:00
|
|
|
}
|