├── .gitignore ├── HOXHUD-README.txt ├── HoxHud P10.0.0 Manual install.7z ├── HoxHud P10.0.0 Self-installer.exe ├── HoxHud ├── HoxHudLocalisation.json ├── HoxHudLocalisationDE.json ├── HoxHudLocalisationES.json ├── HoxHudLocalisationFI.json ├── HoxHudLocalisationFR.json ├── HoxHudLocalisationHU.json ├── HoxHudLocalisationID.json ├── HoxHudLocalisationIT.json ├── HoxHudLocalisationNL.json ├── HoxHudLocalisationPT.json ├── HoxHudLocalisationRU.json ├── HoxHudLocalisationSE.json ├── HoxHudTweakData.lua └── hoxhud-initialised.mp3 ├── IPHLPAPI.dll ├── LuaHook-NG.dll ├── LuaHookNG └── HoxHud.dll ├── VERSION.TXT ├── VERSIONPRE.TXT └── assets └── mod_overrides └── HoxHud └── guis └── textures └── pd2 ├── blackmarket └── icons │ └── characters │ └── old_hoxton.texture └── lootscreen └── loot_cards.texture /.gitignore: -------------------------------------------------------------------------------- 1 | archive/ 2 | *.7z 3 | *.exe -------------------------------------------------------------------------------- /HOXHUD-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HOXHUD-README.txt -------------------------------------------------------------------------------- /HoxHud P10.0.0 Manual install.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HoxHud P10.0.0 Manual install.7z -------------------------------------------------------------------------------- /HoxHud P10.0.0 Self-installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HoxHud P10.0.0 Self-installer.exe -------------------------------------------------------------------------------- /HoxHud/HoxHudLocalisation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HoxHud/HoxHudLocalisation.json -------------------------------------------------------------------------------- /HoxHud/HoxHudLocalisationDE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HoxHud/HoxHudLocalisationDE.json -------------------------------------------------------------------------------- /HoxHud/HoxHudLocalisationES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HoxHud/HoxHudLocalisationES.json -------------------------------------------------------------------------------- /HoxHud/HoxHudLocalisationFI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HoxHud/HoxHudLocalisationFI.json -------------------------------------------------------------------------------- /HoxHud/HoxHudLocalisationFR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HoxHud/HoxHudLocalisationFR.json -------------------------------------------------------------------------------- /HoxHud/HoxHudLocalisationHU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HoxHud/HoxHudLocalisationHU.json -------------------------------------------------------------------------------- /HoxHud/HoxHudLocalisationID.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HoxHud/HoxHudLocalisationID.json -------------------------------------------------------------------------------- /HoxHud/HoxHudLocalisationIT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HoxHud/HoxHudLocalisationIT.json -------------------------------------------------------------------------------- /HoxHud/HoxHudLocalisationNL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HoxHud/HoxHudLocalisationNL.json -------------------------------------------------------------------------------- /HoxHud/HoxHudLocalisationPT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HoxHud/HoxHudLocalisationPT.json -------------------------------------------------------------------------------- /HoxHud/HoxHudLocalisationRU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HoxHud/HoxHudLocalisationRU.json -------------------------------------------------------------------------------- /HoxHud/HoxHudLocalisationSE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HoxHud/HoxHudLocalisationSE.json -------------------------------------------------------------------------------- /HoxHud/HoxHudTweakData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HoxHud/HoxHudTweakData.lua -------------------------------------------------------------------------------- /HoxHud/hoxhud-initialised.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/HoxHud/hoxhud-initialised.mp3 -------------------------------------------------------------------------------- /IPHLPAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/IPHLPAPI.dll -------------------------------------------------------------------------------- /LuaHook-NG.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/LuaHook-NG.dll -------------------------------------------------------------------------------- /LuaHookNG/HoxHud.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/LuaHookNG/HoxHud.dll -------------------------------------------------------------------------------- /VERSION.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/VERSION.TXT -------------------------------------------------------------------------------- /VERSIONPRE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/VERSIONPRE.TXT -------------------------------------------------------------------------------- /assets/mod_overrides/HoxHud/guis/textures/pd2/blackmarket/icons/characters/old_hoxton.texture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/assets/mod_overrides/HoxHud/guis/textures/pd2/blackmarket/icons/characters/old_hoxton.texture -------------------------------------------------------------------------------- /assets/mod_overrides/HoxHud/guis/textures/pd2/lootscreen/loot_cards.texture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HoxHud/HoxHud-bin/HEAD/assets/mod_overrides/HoxHud/guis/textures/pd2/lootscreen/loot_cards.texture --------------------------------------------------------------------------------