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

25 lines
469 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;
import javax.annotation.Nullable;
2018-05-26 22:50:30 +02:00
public interface ICapitated {
/**
* Gets the head of this capitated object.
*/
2018-05-26 22:50:30 +02:00
ModelRenderer getHead();
/**
* Gets the main body
*/
@Nullable
ModelRenderer getBody();
/**
* Returns true if we're wearing any unconventional headgear (ie. a Pumpkin)
*/
boolean hasHeadGear();
2018-05-26 22:50:30 +02:00
}