blob: 40738b1bbbaabe6b95148491f9d6185b12b62d83 [file] [log] [blame] [raw]
/*
* This code is the property of CovertJaguar
* and may only be used with explicit written
* permission unless otherwise specified on the
* license page at railcraft.wikispaces.com.
*/
package mods.railcraft.api.carts;
import net.minecraft.util.Icon;
/**
* Used by the renderer to renders blocks in carts.
*
* @author CovertJaguar <http://www.ModTMechworks.info>
*/
public interface ICartContentsTextureProvider{
public Icon getBlockTextureOnSide(int side);
}