45961bbfbb
(cherry picked from commit e7615d49a4071fe5b5f192884f142c9f3385211a)
11 lines
210 B
JavaScript
11 lines
210 B
JavaScript
export default class MovingObjectPosition {
|
|
|
|
constructor(vector, face, x, y, z) {
|
|
this.vector = vector;
|
|
this.face = face;
|
|
|
|
this.x = x;
|
|
this.y = y;
|
|
this.z = z;
|
|
}
|
|
} |