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

11 lines
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;