mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-03-22 11:47:11 +01:00
11 lines
204 B
Java
11 lines
204 B
Java
package com.minelittlepony.api.model;
|
|
|
|
/**
|
|
* Interface for models that have a head.
|
|
*/
|
|
public interface ICapitated<T> {
|
|
/**
|
|
* Gets the head of this capitated object.
|
|
*/
|
|
T getHead();
|
|
}
|