28 lines
No EOL
589 B
JavaScript
28 lines
No EOL
589 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;
|
|
}
|
|
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; |