001 package net.minecraft.client.model; 002 003 import cpw.mods.fml.relauncher.Side; 004 import cpw.mods.fml.relauncher.SideOnly; 005 006 @SideOnly(Side.CLIENT) 007 public 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 }