| 1234567891011121314151617181920212223242526 |
- export default class GameServerItem
- {
- constructor()
- {
- this.wKindID =0
- this.wNodeID =0
- this.wSortID =0
- this.wServerID =0
- this.wServerKind =0
- this.wServerType =0
- this.wServerLevel =0
- this.wServerPort =0
-
- this.lCellScore =0
- this.cbEnterMember =0
- this.lEnterScore =0
-
- this.dwServerRule =0
- this.dwOnLineCount =0
- this.dwAndroidCount =0
- this.dwFullCount =0
- this.szServerAddr = ""
- this.szServerName = ""
- }
- }
|