mc-beta-server/server/Entities/Entity.js

21 lines
291 B
JavaScript
Raw Normal View History

2021-08-12 05:13:25 +01:00
class Entity {
2021-08-20 22:42:00 +01:00
constructor(EID = 0, x = 0, y = 0, z = 0, yaw = 0, pitch = 0) {
this.EID = EID;
2021-08-18 01:26:04 +01:00
2021-08-12 05:13:25 +01:00
this.x = x;
this.y = y;
this.z = z;
this.yaw = yaw;
this.pitch = pitch;
this.motionX = 0;
this.motionY = 0;
this.motionZ = 0;
}
onTick() {
}
}
module.exports = Entity;