Dive-Engine-2D/src/diveengine2d/Vector3.java

11 lines
161 B
Java

package diveengine2d;
public class Vector3 {
public float x, y, z;
public Vector3(float x, float y, float z) {
this.x = x;
this.y = y;
this.z = z;
}
}