mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-03-23 12:17:12 +01:00
12 lines
204 B
Java
12 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();
|
||
|
}
|