mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-03-25 12:31:31 +01:00
14 lines
361 B
Java
14 lines
361 B
Java
package com.minelittlepony.unicopia.ability;
|
|
|
|
import com.minelittlepony.unicopia.entity.capabilities.IPlayer;
|
|
|
|
/**
|
|
* Predicate for abilities to control what the player's physical height is.
|
|
*
|
|
* This overrides the default.
|
|
*/
|
|
public interface IHeightPredicate {
|
|
float getTargetEyeHeight(IPlayer player);
|
|
|
|
float getTargetBodyHeight(IPlayer player);
|
|
}
|