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

22 lines
No EOL
343 B
JavaScript

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;