MineLittlePony/src/main/java/com/minelittlepony/model/IPonyModel.java

13 lines
360 B
Java
Raw Normal View History

2019-05-27 17:59:15 +02:00
package com.minelittlepony.model;
import net.minecraft.client.model.Cuboid;
import net.minecraft.entity.LivingEntity;
2019-05-28 01:50:45 +02:00
import com.minelittlepony.pony.IPony;
2019-05-27 17:59:15 +02:00
public interface IPonyModel<T extends LivingEntity> extends PonyModelConstants, IModel, ICapitated<Cuboid>, ICompartmented<Cuboid> {
2019-05-28 01:50:45 +02:00
default void updateLivingState(T entity, IPony pony) {
2019-05-27 17:59:15 +02:00
2019-05-28 01:50:45 +02:00
}
2019-05-27 17:59:15 +02:00
}