8 lines
96 B
JavaScript
8 lines
96 B
JavaScript
function Entity() {
|
|
this.x;
|
|
this.y;
|
|
this.health;
|
|
this.maxhealth;
|
|
this.speed;
|
|
this.type;
|
|
}
|