├── .gitignore ├── LICENSE ├── README.md ├── client └── main.lua ├── fxmanifest.lua ├── server └── main.lua └── theme └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | build.bat 3 | exclude.txt 4 | .vscode/settings.json 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Concept-Collective/cc-chat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Concept-Collective/cc-chat/HEAD/README.md -------------------------------------------------------------------------------- /client/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Concept-Collective/cc-chat/HEAD/client/main.lua -------------------------------------------------------------------------------- /fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Concept-Collective/cc-chat/HEAD/fxmanifest.lua -------------------------------------------------------------------------------- /server/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Concept-Collective/cc-chat/HEAD/server/main.lua -------------------------------------------------------------------------------- /theme/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Concept-Collective/cc-chat/HEAD/theme/style.css --------------------------------------------------------------------------------