summaryrefslogtreecommitdiff
path: root/src/renderer/gameserver/profile.ts
blob: 4c99184e1c185be1acf2fc17da86b2008919cdab (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
  ){}
}