mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-22 12:53:10 +01:00
7 lines
154 B
Java
7 lines
154 B
Java
package com.minelittlepony.unicopia.ducks;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
public interface PickedItemSupplier {
|
|
ItemStack getPickedStack();
|
|
}
|