allerta-vvf/server/resources/src/games/empty/game.js

11 lines
251 B
JavaScript

export default class {
constructor(){
this.title = "Empty game";
this.author = "Prova";
this.authorUrl = "https://example.com/";
}
initialize(container){
container.append("<b>THIS IS THE GAME</b>");
}
}