/* * Copyright (c) CovertJaguar, 2014 http://railcraft.info * * This code is the property of CovertJaguar * and may only be used with explicit written * permission unless otherwise specified on the * license page at http://railcraft.info/wiki/info:license. */ package mods.railcraft.common.blocks.machine; import java.util.List; import net.minecraft.client.renderer.texture.IIconRegister; /** * * @author CovertJaguar <http://www.railcraft.info> */ public interface IMachineProxy { IEnumMachine getMachine(int meta); List<? extends IEnumMachine> getCreativeList(); void registerIcons(IIconRegister iconRegister); }