GameServerItem.js 553 B

1234567891011121314151617181920212223242526
  1. export default class GameServerItem
  2. {
  3. constructor()
  4. {
  5. this.wKindID =0
  6. this.wNodeID =0
  7. this.wSortID =0
  8. this.wServerID =0
  9. this.wServerKind =0
  10. this.wServerType =0
  11. this.wServerLevel =0
  12. this.wServerPort =0
  13. this.lCellScore =0
  14. this.cbEnterMember =0
  15. this.lEnterScore =0
  16. this.dwServerRule =0
  17. this.dwOnLineCount =0
  18. this.dwAndroidCount =0
  19. this.dwFullCount =0
  20. this.szServerAddr = ""
  21. this.szServerName = ""
  22. }
  23. }