2021-08-15 00:21:41 +01:00
|
|
|
const EntityLiving = require("./EntityLiving.js");
|
|
|
|
|
|
|
|
class EntityPlayer extends EntityLiving {
|
2021-08-20 22:42:00 +01:00
|
|
|
constructor(EID = 0, x = 0, y = 0, z = 0) {
|
|
|
|
super(EID, x, y, z);
|
2021-08-15 00:21:41 +01:00
|
|
|
|
2021-08-20 22:42:00 +01:00
|
|
|
|
2021-08-15 00:21:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = EntityPlayer;
|