BloodMagic/BM_src/WayofTime/alchemicalWizardry/common/ArmourComponent.java
2014-01-17 14:12:49 -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;
}
}