mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-28 15:38:00 +01:00
13 lines
339 B
Java
13 lines
339 B
Java
|
package com.minelittlepony.unicopia.mixin;
|
||
|
|
||
|
import org.spongepowered.asm.mixin.Mixin;
|
||
|
import org.spongepowered.asm.mixin.gen.Accessor;
|
||
|
import net.minecraft.entity.Entity;
|
||
|
import net.minecraft.entity.Entity.RemovalReason;
|
||
|
|
||
|
@Mixin(Entity.class)
|
||
|
public interface MixinEntity {
|
||
|
@Accessor
|
||
|
void setRemovalReason(RemovalReason reason);
|
||
|
}
|