mirror of
https://github.com/danbulant/console-hub
synced 2026-05-19 12:28:47 +00:00
13 lines
No EOL
190 B
JavaScript
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; |