Unicopia/src/main/java/com/minelittlepony/unicopia/entity/RaceContainer.java

13 lines
248 B
Java
Raw Normal View History

package com.minelittlepony.unicopia.entity;
2020-01-16 12:35:46 +01:00
import net.minecraft.entity.Entity;
/**
* Generic container for an entity that has a race.
*
* @param <T> The type of owner
*/
2020-04-15 18:12:00 +02:00
public interface RaceContainer<T extends Entity> extends Ponylike {
2020-01-16 12:35:46 +01:00
}