BloodMagic/1.7.2/java/WayofTime/alchemicalWizardry/common/ArmourComponent.java
2014-02-14 15:20:20 -05:00

24 lines
353 B
Java

package WayofTime.alchemicalWizardry.common;
public class ArmourComponent
{
private int xOff;
private int zOff;
public ArmourComponent(int xOff, int zOff)
{
this.xOff = xOff;
this.zOff = zOff;
}
public int getXOff()
{
return xOff;
}
public int getZOff()
{
return zOff;
}
}