mc-beta-server/server/Entities/EntityPlayer.js
2021-08-20 22:42:00 +01:00

11 lines
No EOL
202 B
JavaScript

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