BloodMagic/BM_src/forestry/api/food/IBeverageEffect.java
2014-01-25 20:36:28 -05:00

13 lines
241 B
Java

package forestry.api.food;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
public interface IBeverageEffect {
int getId();
void doEffect(World world, EntityPlayer player);
String getDescription();
}