17 lines
259 B
Java
17 lines
259 B
Java
![]() |
package WayofTime.alchemicalWizardry.common;
|
||
|
|
||
|
|
||
|
public class Int3
|
||
|
{
|
||
|
public int xCoord;
|
||
|
public int yCoord;
|
||
|
public int zCoord;
|
||
|
|
||
|
public Int3(int xCoord, int yCoord, int zCoord)
|
||
|
{
|
||
|
this.xCoord = xCoord;
|
||
|
this.yCoord = yCoord;
|
||
|
this.zCoord = zCoord;
|
||
|
}
|
||
|
}
|