mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-17 13:13:12 +01:00
25 lines
800 B
Java
25 lines
800 B
Java
|
package de.ellpeck.actuallyadditions.api.internal;
|
||
|
|
||
|
import de.ellpeck.actuallyadditions.api.recipe.CoffeeIngredient;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraft.nbt.NBTTagCompound;
|
||
|
import net.minecraft.potion.PotionEffect;
|
||
|
|
||
|
/**
|
||
|
* This is the internal method handler.
|
||
|
* Use ActuallyAdditionsAPI.methodHandler for calling
|
||
|
* This is not supposed to be implemented.
|
||
|
*/
|
||
|
public interface IMethodHandler{
|
||
|
|
||
|
boolean addEffectToStack(ItemStack stack, CoffeeIngredient ingredient);
|
||
|
|
||
|
PotionEffect getSameEffectFromStack(ItemStack stack, PotionEffect effect);
|
||
|
|
||
|
void addEffectProperties(ItemStack stack, PotionEffect effect, boolean addDur, boolean addAmp);
|
||
|
|
||
|
void addEffectToStack(ItemStack stack, PotionEffect effect);
|
||
|
|
||
|
PotionEffect[] getEffectsFromStack(ItemStack stack);
|
||
|
}
|