2014-01-17 19:12:49 +00:00
|
|
|
package WayofTime.alchemicalWizardry.common;
|
|
|
|
|
2014-01-17 21:43:13 +00:00
|
|
|
public class ArmourComponent
|
|
|
|
{
|
2014-01-17 19:12:49 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|