mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-28 23:48:00 +01:00
14 lines
359 B
Java
14 lines
359 B
Java
|
package com.minelittlepony.unicopia.mixin;
|
||
|
|
||
|
import org.spongepowered.asm.mixin.Mixin;
|
||
|
import org.spongepowered.asm.mixin.gen.Accessor;
|
||
|
|
||
|
import net.minecraft.block.BlockState;
|
||
|
import net.minecraft.block.entity.BlockEntity;
|
||
|
|
||
|
@Mixin(BlockEntity.class)
|
||
|
public interface MixinBlockEntity {
|
||
|
@Accessor("cachedState")
|
||
|
void setCachedState(BlockState state);
|
||
|
}
|