├── LICENSE ├── README.md ├── client ├── client.lua └── outrun.lua ├── config.lua ├── fxmanifest.lua ├── html ├── index.html ├── script.js └── style.css ├── locales ├── en.lua ├── es.lua ├── it.lua └── pt.lua └── server └── server.lua /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeelot/cw-head2head/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeelot/cw-head2head/HEAD/README.md -------------------------------------------------------------------------------- /client/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeelot/cw-head2head/HEAD/client/client.lua -------------------------------------------------------------------------------- /client/outrun.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeelot/cw-head2head/HEAD/client/outrun.lua -------------------------------------------------------------------------------- /config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeelot/cw-head2head/HEAD/config.lua -------------------------------------------------------------------------------- /fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeelot/cw-head2head/HEAD/fxmanifest.lua -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeelot/cw-head2head/HEAD/html/index.html -------------------------------------------------------------------------------- /html/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeelot/cw-head2head/HEAD/html/script.js -------------------------------------------------------------------------------- /html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeelot/cw-head2head/HEAD/html/style.css -------------------------------------------------------------------------------- /locales/en.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeelot/cw-head2head/HEAD/locales/en.lua -------------------------------------------------------------------------------- /locales/es.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeelot/cw-head2head/HEAD/locales/es.lua -------------------------------------------------------------------------------- /locales/it.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeelot/cw-head2head/HEAD/locales/it.lua -------------------------------------------------------------------------------- /locales/pt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeelot/cw-head2head/HEAD/locales/pt.lua -------------------------------------------------------------------------------- /server/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Coffeelot/cw-head2head/HEAD/server/server.lua --------------------------------------------------------------------------------