Files
GameStarter/src/js/net/minecraft/util/MovingObjectPosition.js
T
LabyStudio 45961bbfbb convert classes to es6
(cherry picked from commit e7615d49a4071fe5b5f192884f142c9f3385211a)
2022-05-02 04:45:51 +02:00

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;
}
}