MineLittlePony/src/main/java/com/minelittlepony/model/capabilities/ICapitated.java
2018-06-22 01:23:52 +02:00

16 lines
347 B
Java

package com.minelittlepony.model.capabilities;
import net.minecraft.client.model.ModelRenderer;
public interface ICapitated {
/**
* Gets the head of this capitated object.
*/
ModelRenderer getHead();
/**
* Returns true if we're wearing any uconventional headgear (ie. a Pumpkin)
*/
boolean hasHeadGear();
}