mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-20 11:24:23 +01:00
14 lines
300 B
Java
14 lines
300 B
Java
package com.minelittlepony.model;
|
|
|
|
public interface ICapitated<ModelRenderer> {
|
|
/**
|
|
* Gets the head of this capitated object.
|
|
*/
|
|
ModelRenderer getHead();
|
|
|
|
/**
|
|
* Returns true if we're wearing any unconventional headgear (ie. a Pumpkin)
|
|
*/
|
|
boolean hasHeadGear();
|
|
|
|
}
|