001package net.minecraft.client.model;
002
003import cpw.mods.fml.relauncher.Side;
004import cpw.mods.fml.relauncher.SideOnly;
005
006@SideOnly(Side.CLIENT)
007public class TextureOffset
008{
009    /** The x coordinate offset of the texture */
010    public final int textureOffsetX;
011
012    /** The y coordinate offset of the texture */
013    public final int textureOffsetY;
014
015    public TextureOffset(int par1, int par2)
016    {
017        this.textureOffsetX = par1;
018        this.textureOffsetY = par2;
019    }
020}