summaryrefslogtreecommitdiff
path: root/src/renderer/gameserver/profile.ts
blob: c4a62686accf0dfe9e899ea4236af4560cf22478 (plain) (blame)
1
2
3
4
5
6
7
8
export default class GameServerProfile {
  constructor(
    public address: string,
    public port: number,
    public engine: "tmwAthena" | "hercules" | "evol2",
    public serverID: string = "DEFAULT" // To enable some server specific features
  ) {}
}