Unicopia/src/main/java/com/minelittlepony/unicopia/player/IUpdatable.java

8 lines
161 B
Java
Raw Normal View History

2018-09-12 01:29:49 +02:00
package com.minelittlepony.unicopia.player;
import net.minecraft.entity.Entity;
2018-09-12 01:29:49 +02:00
public interface IUpdatable<T extends Entity> {
void onUpdate(T entity);
2018-09-12 01:29:49 +02:00
}