KO and HP above user

This commit is contained in:
biglyderv 2024-11-25 14:14:20 -05:00
parent 506e6be65d
commit 873102a927
5 changed files with 95 additions and 47 deletions

22
game.js Normal file
View file

@ -0,0 +1,22 @@
import GameBasic from "./common/game_basic.js";
class Game extends GameBasic {
constructor() {
super();
}
createPlayer(user) {
}
sync() {
}
init() {
super.init();
let that = this;
setInterval(function () { that.sync() }, 1000 / 10);
}
}
export default Game;