MineLittlePony/src/main/java/com/minelittlepony/model/capabilities/ICapitated.java

17 lines
347 B
Java
Raw Normal View History

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