mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 22:07:59 +01:00
9 lines
212 B
Java
9 lines
212 B
Java
|
package com.minelittlepony.unicopia.entity;
|
||
|
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraft.util.Hand;
|
||
|
|
||
|
public interface ItemWielder {
|
||
|
void updateItemUsage(Hand hand, ItemStack stack, int time);
|
||
|
}
|