39 lines
467 B
Java
39 lines
467 B
Java
package fr.jackcartersmith.ob.rendering;
|
|
|
|
public class AccelPositionsDto
|
|
{
|
|
int x;
|
|
int y;
|
|
int z;
|
|
|
|
public int getX()
|
|
{
|
|
return this.x;
|
|
}
|
|
|
|
public void setX(int x)
|
|
{
|
|
this.x = x;
|
|
}
|
|
|
|
public int getY()
|
|
{
|
|
return this.y;
|
|
}
|
|
|
|
public void setY(int y)
|
|
{
|
|
this.y = y;
|
|
}
|
|
|
|
public int getZ()
|
|
{
|
|
return this.z;
|
|
}
|
|
|
|
public void setZ(int z)
|
|
{
|
|
this.z = z;
|
|
}
|
|
}
|