2021-08-24 15:29:46 +01:00
|
|
|
/*
|
|
|
|
==========- EntityLiving.js -===========
|
|
|
|
Created by Holly (tgpethan) (c) 2021
|
|
|
|
Licenced under MIT
|
|
|
|
========================================
|
|
|
|
*/
|
|
|
|
|
2021-08-15 00:21:41 +01:00
|
|
|
const Entity = require("./Entity.js");
|
|
|
|
|
2021-08-20 22:42:00 +01:00
|
|
|
class EntityLiving extends Entity {
|
|
|
|
constructor(EID = 0, x = 0, y = 0, z = 0) {
|
|
|
|
super(EID, x, y, z);
|
2021-08-15 00:21:41 +01:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
onTick() {
|
|
|
|
super.onTick();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-20 22:42:00 +01:00
|
|
|
module.exports = EntityLiving;
|