mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-23 20:54:32 +01:00
8 lines
256 B
Java
8 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> {
|
|
|
|
}
|