11 lines
161 B
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;
|
||
|
|
}
|
||
|
|
}
|