├── .gitattributes ├── .gitignore ├── .npmrc ├── HUD_CREATION.md ├── README.md ├── banner.png ├── csfont.ttf ├── files ├── cfg │ └── gamestate_integration_csgohud.cfg └── readme.txt ├── huds ├── Example_HUD_Large │ ├── example.png │ ├── index.html │ └── style.css └── Example_HUD_Small │ ├── example.png │ ├── index.html │ └── style.css ├── index.html ├── logo.ico ├── logo.png ├── menu.html ├── package.json ├── postBuild.bat └── server.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | loglevel=silent -------------------------------------------------------------------------------- /HUD_CREATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/HUD_CREATION.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/banner.png -------------------------------------------------------------------------------- /csfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/csfont.ttf -------------------------------------------------------------------------------- /files/cfg/gamestate_integration_csgohud.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/files/cfg/gamestate_integration_csgohud.cfg -------------------------------------------------------------------------------- /files/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/files/readme.txt -------------------------------------------------------------------------------- /huds/Example_HUD_Large/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/huds/Example_HUD_Large/example.png -------------------------------------------------------------------------------- /huds/Example_HUD_Large/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/huds/Example_HUD_Large/index.html -------------------------------------------------------------------------------- /huds/Example_HUD_Large/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/huds/Example_HUD_Large/style.css -------------------------------------------------------------------------------- /huds/Example_HUD_Small/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/huds/Example_HUD_Small/example.png -------------------------------------------------------------------------------- /huds/Example_HUD_Small/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/huds/Example_HUD_Small/index.html -------------------------------------------------------------------------------- /huds/Example_HUD_Small/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/huds/Example_HUD_Small/style.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/index.html -------------------------------------------------------------------------------- /logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/logo.ico -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/logo.png -------------------------------------------------------------------------------- /menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/menu.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/package.json -------------------------------------------------------------------------------- /postBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/postBuild.bat -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSparr0w/csgo-hud/HEAD/server.js --------------------------------------------------------------------------------