mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-25 06:17:59 +01:00
28 lines
634 B
Java
28 lines
634 B
Java
package com.minelittlepony.unicopia.mixin;
|
|
|
|
import org.spongepowered.asm.mixin.Mixin;
|
|
import org.spongepowered.asm.mixin.gen.Accessor;
|
|
import org.spongepowered.asm.mixin.gen.Invoker;
|
|
|
|
import net.minecraft.entity.mob.ShulkerEntity;
|
|
|
|
@Mixin(ShulkerEntity.class)
|
|
public interface MixinShulkerEntity {
|
|
@Accessor
|
|
float getOpenProgress();
|
|
|
|
@Accessor
|
|
void setOpenProgress(float value);
|
|
|
|
@Accessor
|
|
float getPrevOpenProgress();
|
|
|
|
@Accessor
|
|
void setPrevOpenProgress(float value);
|
|
|
|
@Invoker("getPeekAmount")
|
|
int callGetPeekAmount();
|
|
|
|
@Invoker("setPeekAmount")
|
|
void callSetPeekAmount(int amount);
|
|
}
|