global.go 364 B

123456789101112131415161718
  1. //@File global.go
  2. //@Time 2022/05/12
  3. //@Author #Suyghur,
  4. package ext
  5. import (
  6. "github.com/liyue201/gostl/ds/list/simplelist"
  7. "github.com/liyue201/gostl/ds/map"
  8. )
  9. var (
  10. GameVipMap *treemap.Map
  11. CsInfoMap *treemap.Map
  12. Game2PlayerStatusMap *treemap.Map
  13. GameConnMap *treemap.Map
  14. WaitingQueue *simplelist.List
  15. )