Adding gitignore
This commit is contained in:
parent
a2b006105e
commit
ecf0a7912e
1084 changed files with 90178 additions and 3 deletions
|
@ -0,0 +1,23 @@
|
|||
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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue