summaryrefslogtreecommitdiff
path: root/src/renderer/gameserver/serverView/serverPage.ts
blob: 91556b0ba57d231229742daf8b3384197e638180 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import GameServer from "../server";

export class GameServerPage {

    constructor(protected server: GameServer) {

    }
    getPage(): HTMLElement {
        const content = document.createElement('div');
        content.classList.add("unknownServerPage");
        content.innerText = `Unknown page for${this.server.name}`;
        return content;
    };
}