MineLittlePony/src/main/java/com/minelittlepony/ducks/IPonyAnimationHolder.java

12 lines
310 B
Java

package com.minelittlepony.ducks;
/**
* Holding class for entities that support special pony animations used for the renderers.
*/
public interface IPonyAnimationHolder {
/**
* Updates and gets the amount this entity is strafing to each side.
*/
float getStrafeAmount(float ticks);
}