blob: 14b91b13069a745d62fb38c19dd8311c27f0ffd3 [file] [log] [blame] [raw]
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();
}