mc-beta-server/server/Entities/EntityLiving.js
2021-08-15 00:21:41 +01:00

15 lines
No EOL
204 B
JavaScript

const Entity = require("./Entity.js");
class EntityPlayer extends Entity {
constructor(x = 0, y = 0, z = 0) {
super(x, y, z);
}
onTick() {
super.onTick();
}
}
module.exports = EntityPlayer;