mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-28 23:48:00 +01:00
19 lines
452 B
Java
19 lines
452 B
Java
|
package com.minelittlepony.unicopia.mixin;
|
||
|
|
||
|
import org.spongepowered.asm.mixin.Mixin;
|
||
|
import org.spongepowered.asm.mixin.gen.Accessor;
|
||
|
|
||
|
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);
|
||
|
}
|