mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-22 04:13:10 +01:00
8 lines
159 B
Java
8 lines
159 B
Java
|
package com.minelittlepony.model.capabilities;
|
||
|
|
||
|
import net.minecraft.client.model.ModelRenderer;
|
||
|
|
||
|
public interface ICapitated {
|
||
|
ModelRenderer getHead();
|
||
|
}
|