├── .github └── workflows │ └── testsuite.yml ├── .gitignore ├── LICENSE ├── README.md ├── images ├── logo.png └── screenshot.png ├── index.html ├── package.json ├── src ├── app.config.ts ├── index.ts └── rooms │ ├── MyRoom.ts │ └── RankedQueueRoom.ts ├── test ├── RankedQueueTest.ts └── utils.ts └── tsconfig.json /.github/workflows/testsuite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/colyseus-ranked-matchmaking/HEAD/.github/workflows/testsuite.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .vscode 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/colyseus-ranked-matchmaking/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/colyseus-ranked-matchmaking/HEAD/README.md -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/colyseus-ranked-matchmaking/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/colyseus-ranked-matchmaking/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/colyseus-ranked-matchmaking/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/colyseus-ranked-matchmaking/HEAD/package.json -------------------------------------------------------------------------------- /src/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/colyseus-ranked-matchmaking/HEAD/src/app.config.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/colyseus-ranked-matchmaking/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/rooms/MyRoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/colyseus-ranked-matchmaking/HEAD/src/rooms/MyRoom.ts -------------------------------------------------------------------------------- /src/rooms/RankedQueueRoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/colyseus-ranked-matchmaking/HEAD/src/rooms/RankedQueueRoom.ts -------------------------------------------------------------------------------- /test/RankedQueueTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/colyseus-ranked-matchmaking/HEAD/test/RankedQueueTest.ts -------------------------------------------------------------------------------- /test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/colyseus-ranked-matchmaking/HEAD/test/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/endel/colyseus-ranked-matchmaking/HEAD/tsconfig.json --------------------------------------------------------------------------------