├── .gitattributes ├── .gitignore ├── PluginMH.sln ├── README.md └── source ├── IniReader.cpp ├── IniReader.h ├── MHWSF.h ├── MemoryMgr.h ├── PluginMH.rc ├── PluginMH.vcxproj ├── PluginMH.vcxproj.filters ├── PluginMH.vcxproj.user ├── code ├── RenderWare.cpp ├── RenderWare.h ├── core │ ├── FileFunctions.cpp │ ├── FileFunctions.h │ ├── eMain.cpp │ ├── eMain.h │ ├── eSettingsManager.cpp │ └── eSettingsManager.h ├── manhunt │ ├── AI.cpp │ ├── AI.h │ ├── AmmoWeapon.cpp │ ├── AmmoWeapon.h │ ├── Anim.cpp │ ├── Anim.h │ ├── AnimID.h │ ├── App.cpp │ ├── App.h │ ├── AudioManager.cpp │ ├── AudioManager.h │ ├── Camera.cpp │ ├── Camera.h │ ├── Character.cpp │ ├── Character.h │ ├── Cheats.cpp │ ├── Cheats.h │ ├── Clump.h │ ├── ClumpDict.cpp │ ├── ClumpDict.h │ ├── ColLine.cpp │ ├── ColLine.h │ ├── Collectable.cpp │ ├── Collectable.h │ ├── ContactInfo.h │ ├── CreationManager.cpp │ ├── CreationManager.h │ ├── Decal.cpp │ ├── Decal.h │ ├── DevMenu.h │ ├── Entity.cpp │ ├── Entity.h │ ├── EntityManager.cpp │ ├── EntityManager.h │ ├── Filenames.cpp │ ├── Filenames.h │ ├── Frontend.cpp │ ├── Frontend.h │ ├── Graph.cpp │ ├── Graph.h │ ├── Hunter.cpp │ ├── Hunter.h │ ├── Input.cpp │ ├── Input.h │ ├── Inventory.cpp │ ├── Inventory.h │ ├── MaterialManager.h │ ├── MaterialMananger.h │ ├── Matrix.h │ ├── MemoryHeap.cpp │ ├── MemoryHeap.h │ ├── Misc.cpp │ ├── Misc.h │ ├── MusicManager.cpp │ ├── MusicManager.h │ ├── ParticleModel.cpp │ ├── ParticleModel.h │ ├── Ped.cpp │ ├── Ped.h │ ├── PedHead.h │ ├── Player.cpp │ ├── Player.h │ ├── PtrList.h │ ├── Renderer.cpp │ ├── Renderer.h │ ├── SampleIDs.h │ ├── Scene.cpp │ ├── Scene.h │ ├── Script.cpp │ ├── Script.h │ ├── Shot.cpp │ ├── Shot.h │ ├── SpecialFX.cpp │ ├── SpecialFX.h │ ├── String.cpp │ ├── String.h │ ├── TexDictionary.cpp │ ├── TexDictionary.h │ ├── Text.cpp │ ├── Text.h │ ├── TextOverlay.cpp │ ├── TextOverlay.h │ ├── Throwable.cpp │ ├── Throwable.h │ ├── Time.cpp │ ├── Time.h │ ├── TypeData.h │ ├── Vector.cpp │ ├── Vector.h │ ├── Weapon.cpp │ ├── Weapon.h │ ├── Weather.cpp │ ├── Weather.h │ └── core.h └── plugin │ ├── MHcommon.cpp │ ├── MHcommon.h │ ├── classes │ ├── eCustomPed.cpp │ ├── eCustomPed.h │ ├── eCustomProjectile.cpp │ └── eCustomProjectile.h │ ├── console │ ├── eConsole.cpp │ └── eConsole.h │ ├── eAchievements.cpp │ ├── eAchievements.h │ ├── eCommonHooks.cpp │ ├── eCommonHooks.h │ ├── eCustomAnimManager.cpp │ ├── eCustomAnimManager.h │ ├── eCustomTableOfContents.cpp │ ├── eCustomTableOfContents.h │ ├── eGUI.cpp │ ├── eGUI.h │ ├── eLaserSights.cpp │ ├── eLaserSights.h │ ├── eLevelsLoader.cpp │ ├── eLevelsLoader.h │ ├── eLog.cpp │ ├── eLog.h │ ├── eMagazineDecals.cpp │ ├── eMagazineDecals.h │ ├── eMapLimits.cpp │ ├── eMapLimits.h │ ├── eModSettings.cpp │ ├── eModSettings.h │ ├── eNewFrontend.cpp │ ├── eNewFrontend.h │ ├── eQoLChanges.cpp │ ├── eQoLChanges.h │ ├── eSkinLoader.cpp │ ├── eSkinLoader.h │ ├── eStatsManager.cpp │ ├── eStatsManager.h │ ├── menu │ ├── eMenu.cpp │ └── eMenu.h │ ├── modloader │ ├── eCustomClumpDict.cpp │ ├── eCustomClumpDict.h │ ├── eModLoader.cpp │ └── eModLoader.h │ ├── script │ ├── eScriptExtender.cpp │ └── eScriptExtender.h │ └── weapon_adjuster │ ├── eWeaponAdjuster.cpp │ └── eWeaponAdjuster.h ├── dllmain.cpp ├── framework.h ├── pch.cpp ├── pch.h └── resource.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/.gitignore -------------------------------------------------------------------------------- /PluginMH.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/PluginMH.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/README.md -------------------------------------------------------------------------------- /source/IniReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/IniReader.cpp -------------------------------------------------------------------------------- /source/IniReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/IniReader.h -------------------------------------------------------------------------------- /source/MHWSF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/MHWSF.h -------------------------------------------------------------------------------- /source/MemoryMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/MemoryMgr.h -------------------------------------------------------------------------------- /source/PluginMH.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/PluginMH.rc -------------------------------------------------------------------------------- /source/PluginMH.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/PluginMH.vcxproj -------------------------------------------------------------------------------- /source/PluginMH.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/PluginMH.vcxproj.filters -------------------------------------------------------------------------------- /source/PluginMH.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/PluginMH.vcxproj.user -------------------------------------------------------------------------------- /source/code/RenderWare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/RenderWare.cpp -------------------------------------------------------------------------------- /source/code/RenderWare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/RenderWare.h -------------------------------------------------------------------------------- /source/code/core/FileFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/core/FileFunctions.cpp -------------------------------------------------------------------------------- /source/code/core/FileFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/core/FileFunctions.h -------------------------------------------------------------------------------- /source/code/core/eMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/core/eMain.cpp -------------------------------------------------------------------------------- /source/code/core/eMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/core/eMain.h -------------------------------------------------------------------------------- /source/code/core/eSettingsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/core/eSettingsManager.cpp -------------------------------------------------------------------------------- /source/code/core/eSettingsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/core/eSettingsManager.h -------------------------------------------------------------------------------- /source/code/manhunt/AI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/AI.cpp -------------------------------------------------------------------------------- /source/code/manhunt/AI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/AI.h -------------------------------------------------------------------------------- /source/code/manhunt/AmmoWeapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/AmmoWeapon.cpp -------------------------------------------------------------------------------- /source/code/manhunt/AmmoWeapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/AmmoWeapon.h -------------------------------------------------------------------------------- /source/code/manhunt/Anim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Anim.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Anim.h -------------------------------------------------------------------------------- /source/code/manhunt/AnimID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/AnimID.h -------------------------------------------------------------------------------- /source/code/manhunt/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/App.cpp -------------------------------------------------------------------------------- /source/code/manhunt/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/App.h -------------------------------------------------------------------------------- /source/code/manhunt/AudioManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/AudioManager.cpp -------------------------------------------------------------------------------- /source/code/manhunt/AudioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/AudioManager.h -------------------------------------------------------------------------------- /source/code/manhunt/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Camera.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Camera.h -------------------------------------------------------------------------------- /source/code/manhunt/Character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Character.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Character.h -------------------------------------------------------------------------------- /source/code/manhunt/Cheats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Cheats.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Cheats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Cheats.h -------------------------------------------------------------------------------- /source/code/manhunt/Clump.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class CClump { 4 | public: 5 | }; -------------------------------------------------------------------------------- /source/code/manhunt/ClumpDict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/ClumpDict.cpp -------------------------------------------------------------------------------- /source/code/manhunt/ClumpDict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/ClumpDict.h -------------------------------------------------------------------------------- /source/code/manhunt/ColLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/ColLine.cpp -------------------------------------------------------------------------------- /source/code/manhunt/ColLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/ColLine.h -------------------------------------------------------------------------------- /source/code/manhunt/Collectable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Collectable.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Collectable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Collectable.h -------------------------------------------------------------------------------- /source/code/manhunt/ContactInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/ContactInfo.h -------------------------------------------------------------------------------- /source/code/manhunt/CreationManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/CreationManager.cpp -------------------------------------------------------------------------------- /source/code/manhunt/CreationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/CreationManager.h -------------------------------------------------------------------------------- /source/code/manhunt/Decal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Decal.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Decal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Decal.h -------------------------------------------------------------------------------- /source/code/manhunt/DevMenu.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define FE_DEV_MENU_ITEMS_MAX 170 4 | 5 | 6 | class CDevMenu { 7 | public: 8 | }; -------------------------------------------------------------------------------- /source/code/manhunt/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Entity.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Entity.h -------------------------------------------------------------------------------- /source/code/manhunt/EntityManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/EntityManager.cpp -------------------------------------------------------------------------------- /source/code/manhunt/EntityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/EntityManager.h -------------------------------------------------------------------------------- /source/code/manhunt/Filenames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Filenames.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Filenames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Filenames.h -------------------------------------------------------------------------------- /source/code/manhunt/Frontend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Frontend.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Frontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Frontend.h -------------------------------------------------------------------------------- /source/code/manhunt/Graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Graph.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Graph.h -------------------------------------------------------------------------------- /source/code/manhunt/Hunter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Hunter.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Hunter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Hunter.h -------------------------------------------------------------------------------- /source/code/manhunt/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Input.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Input.h -------------------------------------------------------------------------------- /source/code/manhunt/Inventory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Inventory.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Inventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Inventory.h -------------------------------------------------------------------------------- /source/code/manhunt/MaterialManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/MaterialManager.h -------------------------------------------------------------------------------- /source/code/manhunt/MaterialMananger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/MaterialMananger.h -------------------------------------------------------------------------------- /source/code/manhunt/Matrix.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class CMatrix { 4 | public: 5 | float M[4][4]; 6 | }; -------------------------------------------------------------------------------- /source/code/manhunt/MemoryHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/MemoryHeap.cpp -------------------------------------------------------------------------------- /source/code/manhunt/MemoryHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/MemoryHeap.h -------------------------------------------------------------------------------- /source/code/manhunt/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Misc.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Misc.h -------------------------------------------------------------------------------- /source/code/manhunt/MusicManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/MusicManager.cpp -------------------------------------------------------------------------------- /source/code/manhunt/MusicManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/MusicManager.h -------------------------------------------------------------------------------- /source/code/manhunt/ParticleModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/ParticleModel.cpp -------------------------------------------------------------------------------- /source/code/manhunt/ParticleModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/ParticleModel.h -------------------------------------------------------------------------------- /source/code/manhunt/Ped.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Ped.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Ped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Ped.h -------------------------------------------------------------------------------- /source/code/manhunt/PedHead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/PedHead.h -------------------------------------------------------------------------------- /source/code/manhunt/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Player.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Player.h -------------------------------------------------------------------------------- /source/code/manhunt/PtrList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/PtrList.h -------------------------------------------------------------------------------- /source/code/manhunt/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Renderer.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Renderer.h -------------------------------------------------------------------------------- /source/code/manhunt/SampleIDs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/SampleIDs.h -------------------------------------------------------------------------------- /source/code/manhunt/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Scene.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Scene.h -------------------------------------------------------------------------------- /source/code/manhunt/Script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Script.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Script.h -------------------------------------------------------------------------------- /source/code/manhunt/Shot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Shot.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Shot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Shot.h -------------------------------------------------------------------------------- /source/code/manhunt/SpecialFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/SpecialFX.cpp -------------------------------------------------------------------------------- /source/code/manhunt/SpecialFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/SpecialFX.h -------------------------------------------------------------------------------- /source/code/manhunt/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/String.cpp -------------------------------------------------------------------------------- /source/code/manhunt/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/String.h -------------------------------------------------------------------------------- /source/code/manhunt/TexDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/TexDictionary.cpp -------------------------------------------------------------------------------- /source/code/manhunt/TexDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/TexDictionary.h -------------------------------------------------------------------------------- /source/code/manhunt/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Text.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Text.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class CText { 4 | public: 5 | static wchar_t* GetFromKey16(const char* key); 6 | }; -------------------------------------------------------------------------------- /source/code/manhunt/TextOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/TextOverlay.cpp -------------------------------------------------------------------------------- /source/code/manhunt/TextOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/TextOverlay.h -------------------------------------------------------------------------------- /source/code/manhunt/Throwable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Throwable.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Throwable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Throwable.h -------------------------------------------------------------------------------- /source/code/manhunt/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Time.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Time.h -------------------------------------------------------------------------------- /source/code/manhunt/TypeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/TypeData.h -------------------------------------------------------------------------------- /source/code/manhunt/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Vector.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Vector.h -------------------------------------------------------------------------------- /source/code/manhunt/Weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Weapon.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Weapon.h -------------------------------------------------------------------------------- /source/code/manhunt/Weather.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Weather.cpp -------------------------------------------------------------------------------- /source/code/manhunt/Weather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/Weather.h -------------------------------------------------------------------------------- /source/code/manhunt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/manhunt/core.h -------------------------------------------------------------------------------- /source/code/plugin/MHcommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/MHcommon.cpp -------------------------------------------------------------------------------- /source/code/plugin/MHcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/MHcommon.h -------------------------------------------------------------------------------- /source/code/plugin/classes/eCustomPed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/classes/eCustomPed.cpp -------------------------------------------------------------------------------- /source/code/plugin/classes/eCustomPed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/classes/eCustomPed.h -------------------------------------------------------------------------------- /source/code/plugin/classes/eCustomProjectile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/classes/eCustomProjectile.cpp -------------------------------------------------------------------------------- /source/code/plugin/classes/eCustomProjectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/classes/eCustomProjectile.h -------------------------------------------------------------------------------- /source/code/plugin/console/eConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/console/eConsole.cpp -------------------------------------------------------------------------------- /source/code/plugin/console/eConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/console/eConsole.h -------------------------------------------------------------------------------- /source/code/plugin/eAchievements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eAchievements.cpp -------------------------------------------------------------------------------- /source/code/plugin/eAchievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eAchievements.h -------------------------------------------------------------------------------- /source/code/plugin/eCommonHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eCommonHooks.cpp -------------------------------------------------------------------------------- /source/code/plugin/eCommonHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eCommonHooks.h -------------------------------------------------------------------------------- /source/code/plugin/eCustomAnimManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eCustomAnimManager.cpp -------------------------------------------------------------------------------- /source/code/plugin/eCustomAnimManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eCustomAnimManager.h -------------------------------------------------------------------------------- /source/code/plugin/eCustomTableOfContents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eCustomTableOfContents.cpp -------------------------------------------------------------------------------- /source/code/plugin/eCustomTableOfContents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eCustomTableOfContents.h -------------------------------------------------------------------------------- /source/code/plugin/eGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eGUI.cpp -------------------------------------------------------------------------------- /source/code/plugin/eGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eGUI.h -------------------------------------------------------------------------------- /source/code/plugin/eLaserSights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eLaserSights.cpp -------------------------------------------------------------------------------- /source/code/plugin/eLaserSights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eLaserSights.h -------------------------------------------------------------------------------- /source/code/plugin/eLevelsLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eLevelsLoader.cpp -------------------------------------------------------------------------------- /source/code/plugin/eLevelsLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eLevelsLoader.h -------------------------------------------------------------------------------- /source/code/plugin/eLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eLog.cpp -------------------------------------------------------------------------------- /source/code/plugin/eLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eLog.h -------------------------------------------------------------------------------- /source/code/plugin/eMagazineDecals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eMagazineDecals.cpp -------------------------------------------------------------------------------- /source/code/plugin/eMagazineDecals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eMagazineDecals.h -------------------------------------------------------------------------------- /source/code/plugin/eMapLimits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eMapLimits.cpp -------------------------------------------------------------------------------- /source/code/plugin/eMapLimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eMapLimits.h -------------------------------------------------------------------------------- /source/code/plugin/eModSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eModSettings.cpp -------------------------------------------------------------------------------- /source/code/plugin/eModSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eModSettings.h -------------------------------------------------------------------------------- /source/code/plugin/eNewFrontend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eNewFrontend.cpp -------------------------------------------------------------------------------- /source/code/plugin/eNewFrontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eNewFrontend.h -------------------------------------------------------------------------------- /source/code/plugin/eQoLChanges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eQoLChanges.cpp -------------------------------------------------------------------------------- /source/code/plugin/eQoLChanges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eQoLChanges.h -------------------------------------------------------------------------------- /source/code/plugin/eSkinLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eSkinLoader.cpp -------------------------------------------------------------------------------- /source/code/plugin/eSkinLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eSkinLoader.h -------------------------------------------------------------------------------- /source/code/plugin/eStatsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eStatsManager.cpp -------------------------------------------------------------------------------- /source/code/plugin/eStatsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/eStatsManager.h -------------------------------------------------------------------------------- /source/code/plugin/menu/eMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/menu/eMenu.cpp -------------------------------------------------------------------------------- /source/code/plugin/menu/eMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/menu/eMenu.h -------------------------------------------------------------------------------- /source/code/plugin/modloader/eCustomClumpDict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/modloader/eCustomClumpDict.cpp -------------------------------------------------------------------------------- /source/code/plugin/modloader/eCustomClumpDict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/modloader/eCustomClumpDict.h -------------------------------------------------------------------------------- /source/code/plugin/modloader/eModLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/modloader/eModLoader.cpp -------------------------------------------------------------------------------- /source/code/plugin/modloader/eModLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/modloader/eModLoader.h -------------------------------------------------------------------------------- /source/code/plugin/script/eScriptExtender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/script/eScriptExtender.cpp -------------------------------------------------------------------------------- /source/code/plugin/script/eScriptExtender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/script/eScriptExtender.h -------------------------------------------------------------------------------- /source/code/plugin/weapon_adjuster/eWeaponAdjuster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/weapon_adjuster/eWeaponAdjuster.cpp -------------------------------------------------------------------------------- /source/code/plugin/weapon_adjuster/eWeaponAdjuster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/code/plugin/weapon_adjuster/eWeaponAdjuster.h -------------------------------------------------------------------------------- /source/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/dllmain.cpp -------------------------------------------------------------------------------- /source/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/framework.h -------------------------------------------------------------------------------- /source/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/pch.cpp -------------------------------------------------------------------------------- /source/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/pch.h -------------------------------------------------------------------------------- /source/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermaccer/Manhunt.PluginMH/HEAD/source/resource.h --------------------------------------------------------------------------------