You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
638 B
Java
24 lines
638 B
Java
package net.minecraft.entity;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.village.MerchantRecipe;
|
|
import net.minecraft.village.MerchantRecipeList;
|
|
|
|
public interface IMerchant
|
|
{
|
|
void setCustomer(EntityPlayer p_70932_1_);
|
|
|
|
EntityPlayer getCustomer();
|
|
|
|
MerchantRecipeList getRecipes(EntityPlayer p_70934_1_);
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
void setRecipes(MerchantRecipeList p_70930_1_);
|
|
|
|
void useRecipe(MerchantRecipe p_70933_1_);
|
|
|
|
void func_110297_a_(ItemStack p_110297_1_);
|
|
} |