mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-25 06:17:59 +01:00
14 lines
375 B
Java
14 lines
375 B
Java
|
package com.minelittlepony.unicopia.mixin;
|
||
|
|
||
|
import org.spongepowered.asm.mixin.Mixin;
|
||
|
import org.spongepowered.asm.mixin.gen.Invoker;
|
||
|
|
||
|
import net.minecraft.block.FallingBlock;
|
||
|
import net.minecraft.entity.FallingBlockEntity;
|
||
|
|
||
|
@Mixin(FallingBlock.class)
|
||
|
public interface MixinFallingBlock {
|
||
|
@Invoker
|
||
|
void invokeConfigureFallingBlockEntity(FallingBlockEntity entity);
|
||
|
}
|