hytale-server/com/hypixel/hytale/server/npc/instructions/BodyMotion.java

11 lines
216 B
Java

package com.hypixel.hytale.server.npc.instructions;
import javax.annotation.Nullable;
public interface BodyMotion extends Motion {
@Nullable
default BodyMotion getSteeringMotion() {
return this;
}
}