├── DB ├── Bots.js ├── Cards.js ├── PlayersSockets.js ├── Servers.js └── data.json ├── GameServer.js ├── api.js ├── helpers.js ├── index.html ├── index.js ├── package.json ├── real-time.js ├── server.js ├── src-ts ├── DB │ ├── Cards.js │ ├── Cards.ts │ ├── Data.js │ ├── PlayersSockets.js │ └── data.json ├── GameServer.ts ├── helpers.ts ├── index.ts └── interfaces.ts └── tsconfig.json /DB/Bots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/DB/Bots.js -------------------------------------------------------------------------------- /DB/Cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/DB/Cards.js -------------------------------------------------------------------------------- /DB/PlayersSockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/DB/PlayersSockets.js -------------------------------------------------------------------------------- /DB/Servers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/DB/Servers.js -------------------------------------------------------------------------------- /DB/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/DB/data.json -------------------------------------------------------------------------------- /GameServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/GameServer.js -------------------------------------------------------------------------------- /api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/api.js -------------------------------------------------------------------------------- /helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/helpers.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/package.json -------------------------------------------------------------------------------- /real-time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/real-time.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/server.js -------------------------------------------------------------------------------- /src-ts/DB/Cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/src-ts/DB/Cards.js -------------------------------------------------------------------------------- /src-ts/DB/Cards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/src-ts/DB/Cards.ts -------------------------------------------------------------------------------- /src-ts/DB/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/src-ts/DB/Data.js -------------------------------------------------------------------------------- /src-ts/DB/PlayersSockets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/src-ts/DB/PlayersSockets.js -------------------------------------------------------------------------------- /src-ts/DB/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/src-ts/DB/data.json -------------------------------------------------------------------------------- /src-ts/GameServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/src-ts/GameServer.ts -------------------------------------------------------------------------------- /src-ts/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/src-ts/helpers.ts -------------------------------------------------------------------------------- /src-ts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/src-ts/index.ts -------------------------------------------------------------------------------- /src-ts/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/src-ts/interfaces.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTG2000/uno-backend/HEAD/tsconfig.json --------------------------------------------------------------------------------