unibutton/common/game_basic.js
2024-11-25 14:14:20 -05:00

30 lines
No EOL
635 B
JavaScript

import Player from "./player.js";
class GameBasic {
constructor() {
let player = new Player(false,true);
let entities = [player];
/*for (let i = 0; i < 50; i++) {
entities.push(new Player(false,false))
}*/
this.player = player;
this.entities = entities;
this.width = this.height = 7500;
}
main() {
let { entities } = this;
for (let ent of entities) {
ent.handleTick(this);
}
}
init() {
let that = this;
setInterval(function () { that.main() }, 1000 / 60);
}
}
export default GameBasic;