mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-03-25 05:00:55 +01:00
8 lines
174 B
Java
8 lines
174 B
Java
package com.minelittlepony.model;
|
|
|
|
public interface ICapitated<ModelRenderer> {
|
|
/**
|
|
* Gets the head of this capitated object.
|
|
*/
|
|
ModelRenderer getHead();
|
|
}
|