js-browser-tile-game/js/entity.js
Aaron Yarborough 4b4e124c57 Initial commit
2019-12-02 10:05:48 +00:00

8 lines
96 B
JavaScript

function Entity() {
this.x;
this.y;
this.health;
this.maxhealth;
this.speed;
this.type;
}