mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-12-01 08:47:59 +01:00
13 lines
350 B
Java
13 lines
350 B
Java
|
package com.minelittlepony.unicopia.mixin;
|
||
|
|
||
|
import org.spongepowered.asm.mixin.Mixin;
|
||
|
import org.spongepowered.asm.mixin.gen.Accessor;
|
||
|
|
||
|
import net.minecraft.entity.projectile.PersistentProjectileEntity;
|
||
|
|
||
|
@Mixin(PersistentProjectileEntity.class)
|
||
|
public interface MixinPersistentProjectileEntity {
|
||
|
@Accessor("inGround")
|
||
|
boolean isInGround();
|
||
|
}
|