console-hub/html/views/data/game.js
2019-12-30 20:38:27 +01:00

13 lines
No EOL
190 B
JavaScript

class Game {
name = "";
image = "";
run(){
console.log("Game running");
this.exit();
}
exit(){
global.menu.show();
}
}
module.exports = Game;