mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-23 12:44:32 +01:00
9 lines
256 B
Java
9 lines
256 B
Java
|
package com.minelittlepony.model;
|
||
|
|
||
|
import net.minecraft.client.model.Cuboid;
|
||
|
import net.minecraft.entity.LivingEntity;
|
||
|
|
||
|
public interface IPonyModel<T extends LivingEntity> extends PonyModelConstants, IModel, ICapitated<Cuboid>, ICompartmented<Cuboid> {
|
||
|
|
||
|
}
|