mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-04-02 17:25:28 +02:00
8 lines
212 B
Java
8 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);
|
|
}
|