mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-24 13:14:32 +01:00
16 lines
347 B
Java
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();
|
|
|
|
}
|