├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── _build ├── mod_sa_installer_samp.nsi ├── mod_sa_installer_samp_DEV.nsi ├── nsis │ ├── bassmod.dll │ ├── brandingurl.dll │ ├── dumplog.dll │ ├── dxwebsetup.exe │ ├── icon.ico │ ├── music.mod │ ├── nsisbassmod.nsh │ └── nsisbassmodmacros.nsh └── utilities │ ├── 7z.dll │ └── 7z.exe ├── bin ├── data │ ├── HANDLING.two │ ├── SHOPPING.two │ ├── VEHICLES.two │ ├── carmods.two │ ├── default.two │ ├── gta.two │ ├── surface.two │ └── timecyc.two └── mod_sa │ ├── mod_sa.ini │ ├── mod_sa.raw │ ├── needle.png │ └── speedo.png └── src ├── ADE32.cpp ├── ADE32.h ├── BitStream.cpp ├── BitStream.h ├── CDetour.cpp ├── CDetour.h ├── CDirect3DData.cpp ├── CDirect3DData.h ├── GTAfuncs.cpp ├── GTAfuncs.h ├── HookedRakClient.cpp ├── HookedRakClient.h ├── RakClient.cpp ├── RakClient.h ├── cheat.cpp ├── cheat.h ├── cheat_actor.cpp ├── cheat_actor.h ├── cheat_funcs.cpp ├── cheat_funcs.h ├── cheat_generic.cpp ├── cheat_generic.h ├── cheat_hookers.cpp ├── cheat_hookers.h ├── cheat_patches.cpp ├── cheat_patches.h ├── cheat_samp.cpp ├── cheat_samp.h ├── cheat_vehRecording.cpp ├── cheat_vehRecording.h ├── cheat_vehicle.cpp ├── cheat_vehicle.h ├── d3drender.cpp ├── d3drender.h ├── debug_classify.cpp ├── debug_classify.h ├── dumb_menu.cpp ├── dumb_menu.h ├── game_sa ├── C3DMarkerSA.cpp ├── C3DMarkerSA.h ├── C3DMarkersSA.cpp ├── C3DMarkersSA.h ├── CAERadioTrackManagerSA.cpp ├── CAERadioTrackManagerSA.h ├── CAnimBlendAssocGroupSA.cpp ├── CAnimBlendAssocGroupSA.h ├── CAnimBlendAssociationSA.cpp ├── CAnimBlendAssociationSA.h ├── CAnimBlendHierarchySA.cpp ├── CAnimBlendHierarchySA.h ├── CAnimBlendSequenceSA.cpp ├── CAnimBlendSequenceSA.h ├── CAnimBlendStaticAssociationSA.cpp ├── CAnimBlendStaticAssociationSA.h ├── CAnimBlockSA.cpp ├── CAnimBlockSA.h ├── CAnimManagerSA.cpp ├── CAnimManagerSA.h ├── CAudioSA.cpp ├── CAudioSA.h ├── CAutomobileSA.cpp ├── CAutomobileSA.h ├── CBikeSA.cpp ├── CBikeSA.h ├── CBmxSA.cpp ├── CBmxSA.h ├── CBoatSA.cpp ├── CBoatSA.h ├── CBuildingSA.cpp ├── CBuildingSA.h ├── CCamSA.cpp ├── CCamSA.h ├── CCameraSA.cpp ├── CCameraSA.h ├── CCarEnterExitSA.cpp ├── CCarEnterExitSA.h ├── CCarGeneratorSA.cpp ├── CCarGeneratorSA.h ├── CCheckpointSA.cpp ├── CCheckpointSA.h ├── CCheckpointsSA.cpp ├── CCheckpointsSA.h ├── CCivilianPedSA.cpp ├── CCivilianPedSA.h ├── CClockSA.cpp ├── CClockSA.h ├── CColModelSA.cpp ├── CColModelSA.h ├── CColPointSA.cpp ├── CColPointSA.h ├── CControllerConfigManagerSA.cpp ├── CControllerConfigManagerSA.h ├── CCoronasSA.cpp ├── CCoronasSA.h ├── CDamageManagerSA.cpp ├── CDamageManagerSA.h ├── CDoorSA.cpp ├── CDoorSA.h ├── CEntitySA.cpp ├── CEntitySA.h ├── CEventDamageSA.cpp ├── CEventDamageSA.h ├── CEventGroupSA.cpp ├── CEventGroupSA.h ├── CEventGunShotSA.cpp ├── CEventGunShotSA.h ├── CEventListSA.cpp ├── CEventListSA.h ├── CEventSA.cpp ├── CEventSA.h ├── CExplosionManagerSA.cpp ├── CExplosionManagerSA.h ├── CExplosionSA.cpp ├── CExplosionSA.h ├── CFireManagerSA.cpp ├── CFireManagerSA.h ├── CFireSA.cpp ├── CFireSA.h ├── CFontSA.cpp ├── CFontSA.h ├── CFxSA.cpp ├── CFxSA.h ├── CGameSA.cpp ├── CGameSA.h ├── CGarageSA.cpp ├── CGarageSA.h ├── CGaragesSA.cpp ├── CGaragesSA.h ├── CHandlingEntrySA.cpp ├── CHandlingEntrySA.h ├── CHandlingManagerSA.cpp ├── CHandlingManagerSA.h ├── CHudSA.cpp ├── CHudSA.h ├── CKeyGenSA.cpp ├── CKeyGenSA.h ├── CMarkerSA.cpp ├── CMarkerSA.h ├── CMatrix.h ├── CMatrix4.h ├── CMatrix_Pad.h ├── CMenuManagerSA.cpp ├── CMenuManagerSA.h ├── CModelInfoSA.cpp ├── CModelInfoSA.h ├── CMonsterTruckSA.cpp ├── CMonsterTruckSA.h ├── CObjectSA.cpp ├── CObjectSA.h ├── COffsets.cpp ├── COffsets.h ├── CPadSA.cpp ├── CPadSA.h ├── CParticleObjectSA.cpp ├── CParticleObjectSA.h ├── CParticleSA.cpp ├── CParticleSA.h ├── CParticleSystemManagerSA.cpp ├── CParticleSystemManagerSA.h ├── CPathFindSA.cpp ├── CPathFindSA.h ├── CPedDamageResponseCalculatorSA.cpp ├── CPedDamageResponseCalculatorSA.h ├── CPedDamageResponseSA.cpp ├── CPedDamageResponseSA.h ├── CPedIKSA.cpp ├── CPedIKSA.h ├── CPedIntelligenceSA.cpp ├── CPedIntelligenceSA.h ├── CPedModelInfoSA.cpp ├── CPedModelInfoSA.h ├── CPedSA.cpp ├── CPedSA.h ├── CPedSoundSA.cpp ├── CPedSoundSA.h ├── CPhysicalSA.cpp ├── CPhysicalSA.h ├── CPickupSA.cpp ├── CPickupSA.h ├── CPickupsSA.cpp ├── CPickupsSA.h ├── CPlaneSA.cpp ├── CPlaneSA.h ├── CPlayerInfoSA.cpp ├── CPlayerInfoSA.h ├── CPlayerPedSA.cpp ├── CPlayerPedSA.h ├── CPoolsSA.cpp ├── CPoolsSA.h ├── CPopulationSA.cpp ├── CPopulationSA.h ├── CProjectileInfoSA.cpp ├── CProjectileInfoSA.h ├── CProjectileSA.cpp ├── CProjectileSA.h ├── CQuadBikeSA.cpp ├── CQuadBikeSA.h ├── CQuat.h ├── CRadarSA.cpp ├── CRadarSA.h ├── CRect2D.h ├── CRegisteredCoronaSA.cpp ├── CRegisteredCoronaSA.h ├── CRemoteSA.cpp ├── CRemoteSA.h ├── CRenderWareSA.cpp ├── CRenderWareSA.h ├── CRestartSA.cpp ├── CRestartSA.h ├── CRopesSA.cpp ├── CRopesSA.h ├── CSettingsSA.cpp ├── CSettingsSA.h ├── CStatsSA.cpp ├── CStatsSA.h ├── CStreamingSA.cpp ├── CStreamingSA.h ├── CTaskManagementSystemSA.cpp ├── CTaskManagementSystemSA.h ├── CTaskManagerSA.cpp ├── CTaskManagerSA.h ├── CTasksSA.cpp ├── CTasksSA.h ├── CTextSA.cpp ├── CTextSA.h ├── CTheCarGeneratorsSA.cpp ├── CTheCarGeneratorsSA.h ├── CTrailerSA.cpp ├── CTrailerSA.h ├── CVector.h ├── CVector2D.h ├── CVehicleSA.cpp ├── CVehicleSA.h ├── CVehicleScannerSA.cpp ├── CVehicleScannerSA.h ├── CVisibilityPluginsSA.cpp ├── CVisibilityPluginsSA.h ├── CWantedSA.cpp ├── CWantedSA.h ├── CWaterManagerSA.cpp ├── CWaterManagerSA.h ├── CWaterSA.cpp ├── CWaterSA.h ├── CWeaponInfoSA.cpp ├── CWeaponInfoSA.h ├── CWeaponSA.cpp ├── CWeaponSA.h ├── CWeatherSA.cpp ├── CWeatherSA.h ├── CWorldSA.cpp ├── CWorldSA.h ├── Common.h ├── HeapTrace.cpp ├── HeapTrace.h ├── HookSystem.cpp ├── HookSystem.h ├── SString.h ├── SharedUtil.h ├── SharedUtil.hpp ├── StdInc.cpp ├── StdInc.h ├── TaskAttackSA.cpp ├── TaskAttackSA.h ├── TaskBasicSA.cpp ├── TaskBasicSA.h ├── TaskCarAccessoriesSA.cpp ├── TaskCarAccessoriesSA.h ├── TaskCarSA.cpp ├── TaskCarSA.h ├── TaskGoToSA.cpp ├── TaskGoToSA.h ├── TaskIKSA.cpp ├── TaskIKSA.h ├── TaskJumpFallSA.cpp ├── TaskJumpFallSA.h ├── TaskNamesSA.cpp ├── TaskNamesSA.h ├── TaskPhysicalResponseSA.cpp ├── TaskPhysicalResponseSA.h ├── TaskSA.cpp ├── TaskSA.h ├── TaskSecondarySA.cpp ├── TaskSecondarySA.h ├── game │ ├── C3DMarker.h │ ├── C3DMarkers.h │ ├── CAERadioTrackManager.h │ ├── CAnimBlendAssocGroup.h │ ├── CAnimBlendAssociation.h │ ├── CAnimBlendHierarchy.h │ ├── CAnimBlendSequence.h │ ├── CAnimBlendStaticAssociation.h │ ├── CAnimBlock.h │ ├── CAnimManager.h │ ├── CAudio.h │ ├── CAutomobile.h │ ├── CBike.h │ ├── CBmx.h │ ├── CBoat.h │ ├── CBuilding.h │ ├── CCam.h │ ├── CCamera.h │ ├── CCarEnterExit.h │ ├── CCarGenerator.h │ ├── CCheckpoint.h │ ├── CCheckpoints.h │ ├── CCivilianPed.h │ ├── CClock.h │ ├── CColModel.h │ ├── CColPoint.h │ ├── CControllerConfigManager.h │ ├── CCoronas.h │ ├── CDamageManager.h │ ├── CDoor.h │ ├── CEntity.h │ ├── CEvent.h │ ├── CEventDamage.h │ ├── CEventGroup.h │ ├── CEventGunShot.h │ ├── CEventList.h │ ├── CExplosion.h │ ├── CExplosionManager.h │ ├── CFire.h │ ├── CFireManager.h │ ├── CFont.h │ ├── CFx.h │ ├── CGame.h │ ├── CGarage.h │ ├── CGarages.h │ ├── CHandlingEntry.h │ ├── CHandlingManager.h │ ├── CHud.h │ ├── CKeyGen.h │ ├── CMarker.h │ ├── CMenuManager.h │ ├── CModelInfo.h │ ├── CMonsterTruck.h │ ├── CObject.h │ ├── CPad.h │ ├── CParticle.h │ ├── CParticleObject.h │ ├── CParticleSystemManager.h │ ├── CPathFind.h │ ├── CPed.h │ ├── CPedDamageResponse.h │ ├── CPedDamageResponseCalculator.h │ ├── CPedIK.h │ ├── CPedIntelligence.h │ ├── CPedModelInfo.h │ ├── CPedSound.h │ ├── CPhysical.h │ ├── CPickup.h │ ├── CPickups.h │ ├── CPlane.h │ ├── CPlayerInfo.h │ ├── CPlayerPed.h │ ├── CPools.h │ ├── CPopulation.h │ ├── CProjectile.h │ ├── CProjectileInfo.h │ ├── CQuadBike.h │ ├── CRadar.h │ ├── CRegisteredCorona.h │ ├── CRemote.h │ ├── CRenderWare.h │ ├── CRestart.h │ ├── CRopes.h │ ├── CSettings.h │ ├── CStats.h │ ├── CStreaming.h │ ├── CTaskManagementSystem.h │ ├── CTaskManager.h │ ├── CTasks.h │ ├── CText.h │ ├── CTheCarGenerators.h │ ├── CTrailer.h │ ├── CVehicle.h │ ├── CVehicleScanner.h │ ├── CVisibilityPlugins.h │ ├── CWanted.h │ ├── CWater.h │ ├── CWaterManager.h │ ├── CWeapon.h │ ├── CWeaponInfo.h │ ├── CWeather.h │ ├── CWorld.h │ ├── Common.h │ ├── RenderWare.h │ ├── Task.h │ ├── TaskAttack.h │ ├── TaskBasic.h │ ├── TaskCar.h │ ├── TaskCarAccessories.h │ ├── TaskGoTo.h │ ├── TaskIK.h │ ├── TaskJumpFall.h │ ├── TaskPhysicalResponse.h │ ├── TaskSecondary.h │ └── TaskTypes.h └── gamesa_renderware.h ├── ini.cpp ├── ini.h ├── keyhook.cpp ├── keyhook.h ├── main.cpp ├── main.h ├── math_stuff.cpp ├── math_stuff.h ├── mod_sa.def ├── mod_sa_VS2012.sln ├── mod_sa_VS2012.vcxproj ├── mod_sa_VS2012.vcxproj.filters ├── mod_sa_VS2013.sln ├── mod_sa_VS2013.vcxproj ├── mod_sa_VS2013.vcxproj.filters ├── mod_sa_VS2015.sln ├── mod_sa_VS2015.vcxproj ├── mod_sa_VS2015.vcxproj.filters ├── patcher.cpp ├── patcher.h ├── proxyIDirect3D9.cpp ├── proxyIDirect3D9.h ├── proxyIDirect3DDevice9.cpp ├── proxyIDirect3DDevice9.h ├── rsrc.rc ├── rsrc └── icon.ico ├── samp.cpp ├── samp.h ├── sparsehash ├── config.h.in ├── config.h.include ├── google │ ├── dense_hash_map.h │ ├── dense_hash_set.h │ ├── sparse_hash_map.h │ ├── sparse_hash_set.h │ ├── sparsehash │ │ ├── densehashtable.h │ │ └── sparsehashtable.h │ ├── sparsetable.h │ └── type_traits.h ├── hashtable_unittest.cc ├── simple_test.cc ├── sparsetable_unittest.cc ├── time_hash_map.cc ├── type_traits_unittest.cc ├── windows │ ├── config.h │ ├── google │ │ └── sparsehash │ │ │ └── sparseconfig.h │ ├── port.cc │ └── port.h └── words ├── sqlite3 └── Readme.txt ├── stddefs.h └── stdtypes.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/README.md -------------------------------------------------------------------------------- /_build/mod_sa_installer_samp.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/_build/mod_sa_installer_samp.nsi -------------------------------------------------------------------------------- /_build/mod_sa_installer_samp_DEV.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/_build/mod_sa_installer_samp_DEV.nsi -------------------------------------------------------------------------------- /_build/nsis/bassmod.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/_build/nsis/bassmod.dll -------------------------------------------------------------------------------- /_build/nsis/brandingurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/_build/nsis/brandingurl.dll -------------------------------------------------------------------------------- /_build/nsis/dumplog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/_build/nsis/dumplog.dll -------------------------------------------------------------------------------- /_build/nsis/dxwebsetup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/_build/nsis/dxwebsetup.exe -------------------------------------------------------------------------------- /_build/nsis/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/_build/nsis/icon.ico -------------------------------------------------------------------------------- /_build/nsis/music.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/_build/nsis/music.mod -------------------------------------------------------------------------------- /_build/nsis/nsisbassmod.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/_build/nsis/nsisbassmod.nsh -------------------------------------------------------------------------------- /_build/nsis/nsisbassmodmacros.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/_build/nsis/nsisbassmodmacros.nsh -------------------------------------------------------------------------------- /_build/utilities/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/_build/utilities/7z.dll -------------------------------------------------------------------------------- /_build/utilities/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/_build/utilities/7z.exe -------------------------------------------------------------------------------- /bin/data/HANDLING.two: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/bin/data/HANDLING.two -------------------------------------------------------------------------------- /bin/data/SHOPPING.two: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/bin/data/SHOPPING.two -------------------------------------------------------------------------------- /bin/data/VEHICLES.two: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/bin/data/VEHICLES.two -------------------------------------------------------------------------------- /bin/data/carmods.two: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/bin/data/carmods.two -------------------------------------------------------------------------------- /bin/data/default.two: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/bin/data/default.two -------------------------------------------------------------------------------- /bin/data/gta.two: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/bin/data/gta.two -------------------------------------------------------------------------------- /bin/data/surface.two: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/bin/data/surface.two -------------------------------------------------------------------------------- /bin/data/timecyc.two: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/bin/data/timecyc.two -------------------------------------------------------------------------------- /bin/mod_sa/mod_sa.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/bin/mod_sa/mod_sa.ini -------------------------------------------------------------------------------- /bin/mod_sa/mod_sa.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/bin/mod_sa/mod_sa.raw -------------------------------------------------------------------------------- /bin/mod_sa/needle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/bin/mod_sa/needle.png -------------------------------------------------------------------------------- /bin/mod_sa/speedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/bin/mod_sa/speedo.png -------------------------------------------------------------------------------- /src/ADE32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/ADE32.cpp -------------------------------------------------------------------------------- /src/ADE32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/ADE32.h -------------------------------------------------------------------------------- /src/BitStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/BitStream.cpp -------------------------------------------------------------------------------- /src/BitStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/BitStream.h -------------------------------------------------------------------------------- /src/CDetour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/CDetour.cpp -------------------------------------------------------------------------------- /src/CDetour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/CDetour.h -------------------------------------------------------------------------------- /src/CDirect3DData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/CDirect3DData.cpp -------------------------------------------------------------------------------- /src/CDirect3DData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/CDirect3DData.h -------------------------------------------------------------------------------- /src/GTAfuncs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/GTAfuncs.cpp -------------------------------------------------------------------------------- /src/GTAfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/GTAfuncs.h -------------------------------------------------------------------------------- /src/HookedRakClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/HookedRakClient.cpp -------------------------------------------------------------------------------- /src/HookedRakClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/HookedRakClient.h -------------------------------------------------------------------------------- /src/RakClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/RakClient.cpp -------------------------------------------------------------------------------- /src/RakClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/RakClient.h -------------------------------------------------------------------------------- /src/cheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat.cpp -------------------------------------------------------------------------------- /src/cheat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat.h -------------------------------------------------------------------------------- /src/cheat_actor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat_actor.cpp -------------------------------------------------------------------------------- /src/cheat_actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat_actor.h -------------------------------------------------------------------------------- /src/cheat_funcs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat_funcs.cpp -------------------------------------------------------------------------------- /src/cheat_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat_funcs.h -------------------------------------------------------------------------------- /src/cheat_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat_generic.cpp -------------------------------------------------------------------------------- /src/cheat_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat_generic.h -------------------------------------------------------------------------------- /src/cheat_hookers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat_hookers.cpp -------------------------------------------------------------------------------- /src/cheat_hookers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat_hookers.h -------------------------------------------------------------------------------- /src/cheat_patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat_patches.cpp -------------------------------------------------------------------------------- /src/cheat_patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat_patches.h -------------------------------------------------------------------------------- /src/cheat_samp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat_samp.cpp -------------------------------------------------------------------------------- /src/cheat_samp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat_samp.h -------------------------------------------------------------------------------- /src/cheat_vehRecording.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat_vehRecording.cpp -------------------------------------------------------------------------------- /src/cheat_vehRecording.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat_vehRecording.h -------------------------------------------------------------------------------- /src/cheat_vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat_vehicle.cpp -------------------------------------------------------------------------------- /src/cheat_vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/cheat_vehicle.h -------------------------------------------------------------------------------- /src/d3drender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/d3drender.cpp -------------------------------------------------------------------------------- /src/d3drender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/d3drender.h -------------------------------------------------------------------------------- /src/debug_classify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/debug_classify.cpp -------------------------------------------------------------------------------- /src/debug_classify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/debug_classify.h -------------------------------------------------------------------------------- /src/dumb_menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/dumb_menu.cpp -------------------------------------------------------------------------------- /src/dumb_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/dumb_menu.h -------------------------------------------------------------------------------- /src/game_sa/C3DMarkerSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/C3DMarkerSA.cpp -------------------------------------------------------------------------------- /src/game_sa/C3DMarkerSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/C3DMarkerSA.h -------------------------------------------------------------------------------- /src/game_sa/C3DMarkersSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/C3DMarkersSA.cpp -------------------------------------------------------------------------------- /src/game_sa/C3DMarkersSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/C3DMarkersSA.h -------------------------------------------------------------------------------- /src/game_sa/CAERadioTrackManagerSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAERadioTrackManagerSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CAERadioTrackManagerSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAERadioTrackManagerSA.h -------------------------------------------------------------------------------- /src/game_sa/CAnimBlendAssocGroupSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAnimBlendAssocGroupSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CAnimBlendAssocGroupSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAnimBlendAssocGroupSA.h -------------------------------------------------------------------------------- /src/game_sa/CAnimBlendAssociationSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAnimBlendAssociationSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CAnimBlendAssociationSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAnimBlendAssociationSA.h -------------------------------------------------------------------------------- /src/game_sa/CAnimBlendHierarchySA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAnimBlendHierarchySA.cpp -------------------------------------------------------------------------------- /src/game_sa/CAnimBlendHierarchySA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAnimBlendHierarchySA.h -------------------------------------------------------------------------------- /src/game_sa/CAnimBlendSequenceSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAnimBlendSequenceSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CAnimBlendSequenceSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAnimBlendSequenceSA.h -------------------------------------------------------------------------------- /src/game_sa/CAnimBlendStaticAssociationSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAnimBlendStaticAssociationSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CAnimBlendStaticAssociationSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAnimBlendStaticAssociationSA.h -------------------------------------------------------------------------------- /src/game_sa/CAnimBlockSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAnimBlockSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CAnimBlockSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAnimBlockSA.h -------------------------------------------------------------------------------- /src/game_sa/CAnimManagerSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAnimManagerSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CAnimManagerSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAnimManagerSA.h -------------------------------------------------------------------------------- /src/game_sa/CAudioSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAudioSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CAudioSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAudioSA.h -------------------------------------------------------------------------------- /src/game_sa/CAutomobileSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAutomobileSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CAutomobileSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CAutomobileSA.h -------------------------------------------------------------------------------- /src/game_sa/CBikeSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CBikeSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CBikeSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CBikeSA.h -------------------------------------------------------------------------------- /src/game_sa/CBmxSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CBmxSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CBmxSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CBmxSA.h -------------------------------------------------------------------------------- /src/game_sa/CBoatSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CBoatSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CBoatSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CBoatSA.h -------------------------------------------------------------------------------- /src/game_sa/CBuildingSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CBuildingSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CBuildingSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CBuildingSA.h -------------------------------------------------------------------------------- /src/game_sa/CCamSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CCamSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CCamSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CCamSA.h -------------------------------------------------------------------------------- /src/game_sa/CCameraSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CCameraSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CCameraSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CCameraSA.h -------------------------------------------------------------------------------- /src/game_sa/CCarEnterExitSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CCarEnterExitSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CCarEnterExitSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CCarEnterExitSA.h -------------------------------------------------------------------------------- /src/game_sa/CCarGeneratorSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CCarGeneratorSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CCarGeneratorSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CCarGeneratorSA.h -------------------------------------------------------------------------------- /src/game_sa/CCheckpointSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CCheckpointSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CCheckpointSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CCheckpointSA.h -------------------------------------------------------------------------------- /src/game_sa/CCheckpointsSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CCheckpointsSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CCheckpointsSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CCheckpointsSA.h -------------------------------------------------------------------------------- /src/game_sa/CCivilianPedSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CCivilianPedSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CCivilianPedSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CCivilianPedSA.h -------------------------------------------------------------------------------- /src/game_sa/CClockSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CClockSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CClockSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CClockSA.h -------------------------------------------------------------------------------- /src/game_sa/CColModelSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CColModelSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CColModelSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CColModelSA.h -------------------------------------------------------------------------------- /src/game_sa/CColPointSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CColPointSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CColPointSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CColPointSA.h -------------------------------------------------------------------------------- /src/game_sa/CControllerConfigManagerSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CControllerConfigManagerSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CControllerConfigManagerSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CControllerConfigManagerSA.h -------------------------------------------------------------------------------- /src/game_sa/CCoronasSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CCoronasSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CCoronasSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CCoronasSA.h -------------------------------------------------------------------------------- /src/game_sa/CDamageManagerSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CDamageManagerSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CDamageManagerSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CDamageManagerSA.h -------------------------------------------------------------------------------- /src/game_sa/CDoorSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CDoorSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CDoorSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CDoorSA.h -------------------------------------------------------------------------------- /src/game_sa/CEntitySA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CEntitySA.cpp -------------------------------------------------------------------------------- /src/game_sa/CEntitySA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CEntitySA.h -------------------------------------------------------------------------------- /src/game_sa/CEventDamageSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CEventDamageSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CEventDamageSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CEventDamageSA.h -------------------------------------------------------------------------------- /src/game_sa/CEventGroupSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CEventGroupSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CEventGroupSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CEventGroupSA.h -------------------------------------------------------------------------------- /src/game_sa/CEventGunShotSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CEventGunShotSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CEventGunShotSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CEventGunShotSA.h -------------------------------------------------------------------------------- /src/game_sa/CEventListSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CEventListSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CEventListSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CEventListSA.h -------------------------------------------------------------------------------- /src/game_sa/CEventSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CEventSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CEventSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CEventSA.h -------------------------------------------------------------------------------- /src/game_sa/CExplosionManagerSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CExplosionManagerSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CExplosionManagerSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CExplosionManagerSA.h -------------------------------------------------------------------------------- /src/game_sa/CExplosionSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CExplosionSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CExplosionSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CExplosionSA.h -------------------------------------------------------------------------------- /src/game_sa/CFireManagerSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CFireManagerSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CFireManagerSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CFireManagerSA.h -------------------------------------------------------------------------------- /src/game_sa/CFireSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CFireSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CFireSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CFireSA.h -------------------------------------------------------------------------------- /src/game_sa/CFontSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CFontSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CFontSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CFontSA.h -------------------------------------------------------------------------------- /src/game_sa/CFxSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CFxSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CFxSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CFxSA.h -------------------------------------------------------------------------------- /src/game_sa/CGameSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CGameSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CGameSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CGameSA.h -------------------------------------------------------------------------------- /src/game_sa/CGarageSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CGarageSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CGarageSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CGarageSA.h -------------------------------------------------------------------------------- /src/game_sa/CGaragesSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CGaragesSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CGaragesSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CGaragesSA.h -------------------------------------------------------------------------------- /src/game_sa/CHandlingEntrySA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CHandlingEntrySA.cpp -------------------------------------------------------------------------------- /src/game_sa/CHandlingEntrySA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CHandlingEntrySA.h -------------------------------------------------------------------------------- /src/game_sa/CHandlingManagerSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CHandlingManagerSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CHandlingManagerSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CHandlingManagerSA.h -------------------------------------------------------------------------------- /src/game_sa/CHudSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CHudSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CHudSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CHudSA.h -------------------------------------------------------------------------------- /src/game_sa/CKeyGenSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CKeyGenSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CKeyGenSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CKeyGenSA.h -------------------------------------------------------------------------------- /src/game_sa/CMarkerSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CMarkerSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CMarkerSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CMarkerSA.h -------------------------------------------------------------------------------- /src/game_sa/CMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CMatrix.h -------------------------------------------------------------------------------- /src/game_sa/CMatrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CMatrix4.h -------------------------------------------------------------------------------- /src/game_sa/CMatrix_Pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CMatrix_Pad.h -------------------------------------------------------------------------------- /src/game_sa/CMenuManagerSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CMenuManagerSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CMenuManagerSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CMenuManagerSA.h -------------------------------------------------------------------------------- /src/game_sa/CModelInfoSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CModelInfoSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CModelInfoSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CModelInfoSA.h -------------------------------------------------------------------------------- /src/game_sa/CMonsterTruckSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CMonsterTruckSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CMonsterTruckSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CMonsterTruckSA.h -------------------------------------------------------------------------------- /src/game_sa/CObjectSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CObjectSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CObjectSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CObjectSA.h -------------------------------------------------------------------------------- /src/game_sa/COffsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/COffsets.cpp -------------------------------------------------------------------------------- /src/game_sa/COffsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/COffsets.h -------------------------------------------------------------------------------- /src/game_sa/CPadSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPadSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPadSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPadSA.h -------------------------------------------------------------------------------- /src/game_sa/CParticleObjectSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CParticleObjectSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CParticleObjectSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CParticleObjectSA.h -------------------------------------------------------------------------------- /src/game_sa/CParticleSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CParticleSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CParticleSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CParticleSA.h -------------------------------------------------------------------------------- /src/game_sa/CParticleSystemManagerSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CParticleSystemManagerSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CParticleSystemManagerSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CParticleSystemManagerSA.h -------------------------------------------------------------------------------- /src/game_sa/CPathFindSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPathFindSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPathFindSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPathFindSA.h -------------------------------------------------------------------------------- /src/game_sa/CPedDamageResponseCalculatorSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPedDamageResponseCalculatorSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPedDamageResponseCalculatorSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPedDamageResponseCalculatorSA.h -------------------------------------------------------------------------------- /src/game_sa/CPedDamageResponseSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPedDamageResponseSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPedDamageResponseSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPedDamageResponseSA.h -------------------------------------------------------------------------------- /src/game_sa/CPedIKSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPedIKSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPedIKSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPedIKSA.h -------------------------------------------------------------------------------- /src/game_sa/CPedIntelligenceSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPedIntelligenceSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPedIntelligenceSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPedIntelligenceSA.h -------------------------------------------------------------------------------- /src/game_sa/CPedModelInfoSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPedModelInfoSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPedModelInfoSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPedModelInfoSA.h -------------------------------------------------------------------------------- /src/game_sa/CPedSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPedSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPedSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPedSA.h -------------------------------------------------------------------------------- /src/game_sa/CPedSoundSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPedSoundSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPedSoundSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPedSoundSA.h -------------------------------------------------------------------------------- /src/game_sa/CPhysicalSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPhysicalSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPhysicalSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPhysicalSA.h -------------------------------------------------------------------------------- /src/game_sa/CPickupSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPickupSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPickupSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPickupSA.h -------------------------------------------------------------------------------- /src/game_sa/CPickupsSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPickupsSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPickupsSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPickupsSA.h -------------------------------------------------------------------------------- /src/game_sa/CPlaneSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPlaneSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPlaneSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPlaneSA.h -------------------------------------------------------------------------------- /src/game_sa/CPlayerInfoSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPlayerInfoSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPlayerInfoSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPlayerInfoSA.h -------------------------------------------------------------------------------- /src/game_sa/CPlayerPedSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPlayerPedSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPlayerPedSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPlayerPedSA.h -------------------------------------------------------------------------------- /src/game_sa/CPoolsSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPoolsSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPoolsSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPoolsSA.h -------------------------------------------------------------------------------- /src/game_sa/CPopulationSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPopulationSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CPopulationSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CPopulationSA.h -------------------------------------------------------------------------------- /src/game_sa/CProjectileInfoSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CProjectileInfoSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CProjectileInfoSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CProjectileInfoSA.h -------------------------------------------------------------------------------- /src/game_sa/CProjectileSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CProjectileSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CProjectileSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CProjectileSA.h -------------------------------------------------------------------------------- /src/game_sa/CQuadBikeSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CQuadBikeSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CQuadBikeSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CQuadBikeSA.h -------------------------------------------------------------------------------- /src/game_sa/CQuat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CQuat.h -------------------------------------------------------------------------------- /src/game_sa/CRadarSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CRadarSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CRadarSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CRadarSA.h -------------------------------------------------------------------------------- /src/game_sa/CRect2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CRect2D.h -------------------------------------------------------------------------------- /src/game_sa/CRegisteredCoronaSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CRegisteredCoronaSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CRegisteredCoronaSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CRegisteredCoronaSA.h -------------------------------------------------------------------------------- /src/game_sa/CRemoteSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CRemoteSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CRemoteSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CRemoteSA.h -------------------------------------------------------------------------------- /src/game_sa/CRenderWareSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CRenderWareSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CRenderWareSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CRenderWareSA.h -------------------------------------------------------------------------------- /src/game_sa/CRestartSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CRestartSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CRestartSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CRestartSA.h -------------------------------------------------------------------------------- /src/game_sa/CRopesSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CRopesSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CRopesSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CRopesSA.h -------------------------------------------------------------------------------- /src/game_sa/CSettingsSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CSettingsSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CSettingsSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CSettingsSA.h -------------------------------------------------------------------------------- /src/game_sa/CStatsSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CStatsSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CStatsSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CStatsSA.h -------------------------------------------------------------------------------- /src/game_sa/CStreamingSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CStreamingSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CStreamingSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CStreamingSA.h -------------------------------------------------------------------------------- /src/game_sa/CTaskManagementSystemSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CTaskManagementSystemSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CTaskManagementSystemSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CTaskManagementSystemSA.h -------------------------------------------------------------------------------- /src/game_sa/CTaskManagerSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CTaskManagerSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CTaskManagerSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CTaskManagerSA.h -------------------------------------------------------------------------------- /src/game_sa/CTasksSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CTasksSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CTasksSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CTasksSA.h -------------------------------------------------------------------------------- /src/game_sa/CTextSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CTextSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CTextSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CTextSA.h -------------------------------------------------------------------------------- /src/game_sa/CTheCarGeneratorsSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CTheCarGeneratorsSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CTheCarGeneratorsSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CTheCarGeneratorsSA.h -------------------------------------------------------------------------------- /src/game_sa/CTrailerSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CTrailerSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CTrailerSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CTrailerSA.h -------------------------------------------------------------------------------- /src/game_sa/CVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CVector.h -------------------------------------------------------------------------------- /src/game_sa/CVector2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CVector2D.h -------------------------------------------------------------------------------- /src/game_sa/CVehicleSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CVehicleSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CVehicleSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CVehicleSA.h -------------------------------------------------------------------------------- /src/game_sa/CVehicleScannerSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CVehicleScannerSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CVehicleScannerSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CVehicleScannerSA.h -------------------------------------------------------------------------------- /src/game_sa/CVisibilityPluginsSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CVisibilityPluginsSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CVisibilityPluginsSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CVisibilityPluginsSA.h -------------------------------------------------------------------------------- /src/game_sa/CWantedSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CWantedSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CWantedSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CWantedSA.h -------------------------------------------------------------------------------- /src/game_sa/CWaterManagerSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CWaterManagerSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CWaterManagerSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CWaterManagerSA.h -------------------------------------------------------------------------------- /src/game_sa/CWaterSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CWaterSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CWaterSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CWaterSA.h -------------------------------------------------------------------------------- /src/game_sa/CWeaponInfoSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CWeaponInfoSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CWeaponInfoSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CWeaponInfoSA.h -------------------------------------------------------------------------------- /src/game_sa/CWeaponSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CWeaponSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CWeaponSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CWeaponSA.h -------------------------------------------------------------------------------- /src/game_sa/CWeatherSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CWeatherSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CWeatherSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CWeatherSA.h -------------------------------------------------------------------------------- /src/game_sa/CWorldSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CWorldSA.cpp -------------------------------------------------------------------------------- /src/game_sa/CWorldSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/CWorldSA.h -------------------------------------------------------------------------------- /src/game_sa/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/Common.h -------------------------------------------------------------------------------- /src/game_sa/HeapTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/HeapTrace.cpp -------------------------------------------------------------------------------- /src/game_sa/HeapTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/HeapTrace.h -------------------------------------------------------------------------------- /src/game_sa/HookSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/HookSystem.cpp -------------------------------------------------------------------------------- /src/game_sa/HookSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/HookSystem.h -------------------------------------------------------------------------------- /src/game_sa/SString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/SString.h -------------------------------------------------------------------------------- /src/game_sa/SharedUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/SharedUtil.h -------------------------------------------------------------------------------- /src/game_sa/SharedUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/SharedUtil.hpp -------------------------------------------------------------------------------- /src/game_sa/StdInc.cpp: -------------------------------------------------------------------------------- 1 | // StdInc.h 2 | #include 3 | 4 | -------------------------------------------------------------------------------- /src/game_sa/StdInc.h: -------------------------------------------------------------------------------- 1 | #include "main.h" 2 | -------------------------------------------------------------------------------- /src/game_sa/TaskAttackSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskAttackSA.cpp -------------------------------------------------------------------------------- /src/game_sa/TaskAttackSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskAttackSA.h -------------------------------------------------------------------------------- /src/game_sa/TaskBasicSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskBasicSA.cpp -------------------------------------------------------------------------------- /src/game_sa/TaskBasicSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskBasicSA.h -------------------------------------------------------------------------------- /src/game_sa/TaskCarAccessoriesSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskCarAccessoriesSA.cpp -------------------------------------------------------------------------------- /src/game_sa/TaskCarAccessoriesSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskCarAccessoriesSA.h -------------------------------------------------------------------------------- /src/game_sa/TaskCarSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskCarSA.cpp -------------------------------------------------------------------------------- /src/game_sa/TaskCarSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskCarSA.h -------------------------------------------------------------------------------- /src/game_sa/TaskGoToSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskGoToSA.cpp -------------------------------------------------------------------------------- /src/game_sa/TaskGoToSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskGoToSA.h -------------------------------------------------------------------------------- /src/game_sa/TaskIKSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskIKSA.cpp -------------------------------------------------------------------------------- /src/game_sa/TaskIKSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskIKSA.h -------------------------------------------------------------------------------- /src/game_sa/TaskJumpFallSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskJumpFallSA.cpp -------------------------------------------------------------------------------- /src/game_sa/TaskJumpFallSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskJumpFallSA.h -------------------------------------------------------------------------------- /src/game_sa/TaskNamesSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskNamesSA.cpp -------------------------------------------------------------------------------- /src/game_sa/TaskNamesSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskNamesSA.h -------------------------------------------------------------------------------- /src/game_sa/TaskPhysicalResponseSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskPhysicalResponseSA.cpp -------------------------------------------------------------------------------- /src/game_sa/TaskPhysicalResponseSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskPhysicalResponseSA.h -------------------------------------------------------------------------------- /src/game_sa/TaskSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskSA.cpp -------------------------------------------------------------------------------- /src/game_sa/TaskSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskSA.h -------------------------------------------------------------------------------- /src/game_sa/TaskSecondarySA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskSecondarySA.cpp -------------------------------------------------------------------------------- /src/game_sa/TaskSecondarySA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/TaskSecondarySA.h -------------------------------------------------------------------------------- /src/game_sa/game/C3DMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/C3DMarker.h -------------------------------------------------------------------------------- /src/game_sa/game/C3DMarkers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/C3DMarkers.h -------------------------------------------------------------------------------- /src/game_sa/game/CAERadioTrackManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CAERadioTrackManager.h -------------------------------------------------------------------------------- /src/game_sa/game/CAnimBlendAssocGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CAnimBlendAssocGroup.h -------------------------------------------------------------------------------- /src/game_sa/game/CAnimBlendAssociation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CAnimBlendAssociation.h -------------------------------------------------------------------------------- /src/game_sa/game/CAnimBlendHierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CAnimBlendHierarchy.h -------------------------------------------------------------------------------- /src/game_sa/game/CAnimBlendSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CAnimBlendSequence.h -------------------------------------------------------------------------------- /src/game_sa/game/CAnimBlendStaticAssociation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CAnimBlendStaticAssociation.h -------------------------------------------------------------------------------- /src/game_sa/game/CAnimBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CAnimBlock.h -------------------------------------------------------------------------------- /src/game_sa/game/CAnimManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CAnimManager.h -------------------------------------------------------------------------------- /src/game_sa/game/CAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CAudio.h -------------------------------------------------------------------------------- /src/game_sa/game/CAutomobile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CAutomobile.h -------------------------------------------------------------------------------- /src/game_sa/game/CBike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CBike.h -------------------------------------------------------------------------------- /src/game_sa/game/CBmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CBmx.h -------------------------------------------------------------------------------- /src/game_sa/game/CBoat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CBoat.h -------------------------------------------------------------------------------- /src/game_sa/game/CBuilding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CBuilding.h -------------------------------------------------------------------------------- /src/game_sa/game/CCam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CCam.h -------------------------------------------------------------------------------- /src/game_sa/game/CCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CCamera.h -------------------------------------------------------------------------------- /src/game_sa/game/CCarEnterExit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CCarEnterExit.h -------------------------------------------------------------------------------- /src/game_sa/game/CCarGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CCarGenerator.h -------------------------------------------------------------------------------- /src/game_sa/game/CCheckpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CCheckpoint.h -------------------------------------------------------------------------------- /src/game_sa/game/CCheckpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CCheckpoints.h -------------------------------------------------------------------------------- /src/game_sa/game/CCivilianPed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CCivilianPed.h -------------------------------------------------------------------------------- /src/game_sa/game/CClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CClock.h -------------------------------------------------------------------------------- /src/game_sa/game/CColModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CColModel.h -------------------------------------------------------------------------------- /src/game_sa/game/CColPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CColPoint.h -------------------------------------------------------------------------------- /src/game_sa/game/CControllerConfigManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CControllerConfigManager.h -------------------------------------------------------------------------------- /src/game_sa/game/CCoronas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CCoronas.h -------------------------------------------------------------------------------- /src/game_sa/game/CDamageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CDamageManager.h -------------------------------------------------------------------------------- /src/game_sa/game/CDoor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CDoor.h -------------------------------------------------------------------------------- /src/game_sa/game/CEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CEntity.h -------------------------------------------------------------------------------- /src/game_sa/game/CEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CEvent.h -------------------------------------------------------------------------------- /src/game_sa/game/CEventDamage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CEventDamage.h -------------------------------------------------------------------------------- /src/game_sa/game/CEventGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CEventGroup.h -------------------------------------------------------------------------------- /src/game_sa/game/CEventGunShot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CEventGunShot.h -------------------------------------------------------------------------------- /src/game_sa/game/CEventList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CEventList.h -------------------------------------------------------------------------------- /src/game_sa/game/CExplosion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CExplosion.h -------------------------------------------------------------------------------- /src/game_sa/game/CExplosionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CExplosionManager.h -------------------------------------------------------------------------------- /src/game_sa/game/CFire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CFire.h -------------------------------------------------------------------------------- /src/game_sa/game/CFireManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CFireManager.h -------------------------------------------------------------------------------- /src/game_sa/game/CFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CFont.h -------------------------------------------------------------------------------- /src/game_sa/game/CFx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CFx.h -------------------------------------------------------------------------------- /src/game_sa/game/CGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CGame.h -------------------------------------------------------------------------------- /src/game_sa/game/CGarage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CGarage.h -------------------------------------------------------------------------------- /src/game_sa/game/CGarages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CGarages.h -------------------------------------------------------------------------------- /src/game_sa/game/CHandlingEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CHandlingEntry.h -------------------------------------------------------------------------------- /src/game_sa/game/CHandlingManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CHandlingManager.h -------------------------------------------------------------------------------- /src/game_sa/game/CHud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CHud.h -------------------------------------------------------------------------------- /src/game_sa/game/CKeyGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CKeyGen.h -------------------------------------------------------------------------------- /src/game_sa/game/CMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CMarker.h -------------------------------------------------------------------------------- /src/game_sa/game/CMenuManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CMenuManager.h -------------------------------------------------------------------------------- /src/game_sa/game/CModelInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CModelInfo.h -------------------------------------------------------------------------------- /src/game_sa/game/CMonsterTruck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CMonsterTruck.h -------------------------------------------------------------------------------- /src/game_sa/game/CObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CObject.h -------------------------------------------------------------------------------- /src/game_sa/game/CPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPad.h -------------------------------------------------------------------------------- /src/game_sa/game/CParticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CParticle.h -------------------------------------------------------------------------------- /src/game_sa/game/CParticleObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CParticleObject.h -------------------------------------------------------------------------------- /src/game_sa/game/CParticleSystemManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CParticleSystemManager.h -------------------------------------------------------------------------------- /src/game_sa/game/CPathFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPathFind.h -------------------------------------------------------------------------------- /src/game_sa/game/CPed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPed.h -------------------------------------------------------------------------------- /src/game_sa/game/CPedDamageResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPedDamageResponse.h -------------------------------------------------------------------------------- /src/game_sa/game/CPedDamageResponseCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPedDamageResponseCalculator.h -------------------------------------------------------------------------------- /src/game_sa/game/CPedIK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPedIK.h -------------------------------------------------------------------------------- /src/game_sa/game/CPedIntelligence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPedIntelligence.h -------------------------------------------------------------------------------- /src/game_sa/game/CPedModelInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPedModelInfo.h -------------------------------------------------------------------------------- /src/game_sa/game/CPedSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPedSound.h -------------------------------------------------------------------------------- /src/game_sa/game/CPhysical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPhysical.h -------------------------------------------------------------------------------- /src/game_sa/game/CPickup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPickup.h -------------------------------------------------------------------------------- /src/game_sa/game/CPickups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPickups.h -------------------------------------------------------------------------------- /src/game_sa/game/CPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPlane.h -------------------------------------------------------------------------------- /src/game_sa/game/CPlayerInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPlayerInfo.h -------------------------------------------------------------------------------- /src/game_sa/game/CPlayerPed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPlayerPed.h -------------------------------------------------------------------------------- /src/game_sa/game/CPools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPools.h -------------------------------------------------------------------------------- /src/game_sa/game/CPopulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CPopulation.h -------------------------------------------------------------------------------- /src/game_sa/game/CProjectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CProjectile.h -------------------------------------------------------------------------------- /src/game_sa/game/CProjectileInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CProjectileInfo.h -------------------------------------------------------------------------------- /src/game_sa/game/CQuadBike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CQuadBike.h -------------------------------------------------------------------------------- /src/game_sa/game/CRadar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CRadar.h -------------------------------------------------------------------------------- /src/game_sa/game/CRegisteredCorona.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CRegisteredCorona.h -------------------------------------------------------------------------------- /src/game_sa/game/CRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CRemote.h -------------------------------------------------------------------------------- /src/game_sa/game/CRenderWare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CRenderWare.h -------------------------------------------------------------------------------- /src/game_sa/game/CRestart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CRestart.h -------------------------------------------------------------------------------- /src/game_sa/game/CRopes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CRopes.h -------------------------------------------------------------------------------- /src/game_sa/game/CSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CSettings.h -------------------------------------------------------------------------------- /src/game_sa/game/CStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CStats.h -------------------------------------------------------------------------------- /src/game_sa/game/CStreaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CStreaming.h -------------------------------------------------------------------------------- /src/game_sa/game/CTaskManagementSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CTaskManagementSystem.h -------------------------------------------------------------------------------- /src/game_sa/game/CTaskManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CTaskManager.h -------------------------------------------------------------------------------- /src/game_sa/game/CTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CTasks.h -------------------------------------------------------------------------------- /src/game_sa/game/CText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CText.h -------------------------------------------------------------------------------- /src/game_sa/game/CTheCarGenerators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CTheCarGenerators.h -------------------------------------------------------------------------------- /src/game_sa/game/CTrailer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CTrailer.h -------------------------------------------------------------------------------- /src/game_sa/game/CVehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CVehicle.h -------------------------------------------------------------------------------- /src/game_sa/game/CVehicleScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CVehicleScanner.h -------------------------------------------------------------------------------- /src/game_sa/game/CVisibilityPlugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CVisibilityPlugins.h -------------------------------------------------------------------------------- /src/game_sa/game/CWanted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CWanted.h -------------------------------------------------------------------------------- /src/game_sa/game/CWater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CWater.h -------------------------------------------------------------------------------- /src/game_sa/game/CWaterManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CWaterManager.h -------------------------------------------------------------------------------- /src/game_sa/game/CWeapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CWeapon.h -------------------------------------------------------------------------------- /src/game_sa/game/CWeaponInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CWeaponInfo.h -------------------------------------------------------------------------------- /src/game_sa/game/CWeather.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CWeather.h -------------------------------------------------------------------------------- /src/game_sa/game/CWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/CWorld.h -------------------------------------------------------------------------------- /src/game_sa/game/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/Common.h -------------------------------------------------------------------------------- /src/game_sa/game/RenderWare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/RenderWare.h -------------------------------------------------------------------------------- /src/game_sa/game/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/Task.h -------------------------------------------------------------------------------- /src/game_sa/game/TaskAttack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/TaskAttack.h -------------------------------------------------------------------------------- /src/game_sa/game/TaskBasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/TaskBasic.h -------------------------------------------------------------------------------- /src/game_sa/game/TaskCar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/TaskCar.h -------------------------------------------------------------------------------- /src/game_sa/game/TaskCarAccessories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/TaskCarAccessories.h -------------------------------------------------------------------------------- /src/game_sa/game/TaskGoTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/TaskGoTo.h -------------------------------------------------------------------------------- /src/game_sa/game/TaskIK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/TaskIK.h -------------------------------------------------------------------------------- /src/game_sa/game/TaskJumpFall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/TaskJumpFall.h -------------------------------------------------------------------------------- /src/game_sa/game/TaskPhysicalResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/TaskPhysicalResponse.h -------------------------------------------------------------------------------- /src/game_sa/game/TaskSecondary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/TaskSecondary.h -------------------------------------------------------------------------------- /src/game_sa/game/TaskTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/game/TaskTypes.h -------------------------------------------------------------------------------- /src/game_sa/gamesa_renderware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/game_sa/gamesa_renderware.h -------------------------------------------------------------------------------- /src/ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/ini.cpp -------------------------------------------------------------------------------- /src/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/ini.h -------------------------------------------------------------------------------- /src/keyhook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/keyhook.cpp -------------------------------------------------------------------------------- /src/keyhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/keyhook.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/main.h -------------------------------------------------------------------------------- /src/math_stuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/math_stuff.cpp -------------------------------------------------------------------------------- /src/math_stuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/math_stuff.h -------------------------------------------------------------------------------- /src/mod_sa.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/mod_sa.def -------------------------------------------------------------------------------- /src/mod_sa_VS2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/mod_sa_VS2012.sln -------------------------------------------------------------------------------- /src/mod_sa_VS2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/mod_sa_VS2012.vcxproj -------------------------------------------------------------------------------- /src/mod_sa_VS2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/mod_sa_VS2012.vcxproj.filters -------------------------------------------------------------------------------- /src/mod_sa_VS2013.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/mod_sa_VS2013.sln -------------------------------------------------------------------------------- /src/mod_sa_VS2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/mod_sa_VS2013.vcxproj -------------------------------------------------------------------------------- /src/mod_sa_VS2013.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/mod_sa_VS2013.vcxproj.filters -------------------------------------------------------------------------------- /src/mod_sa_VS2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/mod_sa_VS2015.sln -------------------------------------------------------------------------------- /src/mod_sa_VS2015.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/mod_sa_VS2015.vcxproj -------------------------------------------------------------------------------- /src/mod_sa_VS2015.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/mod_sa_VS2015.vcxproj.filters -------------------------------------------------------------------------------- /src/patcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/patcher.cpp -------------------------------------------------------------------------------- /src/patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/patcher.h -------------------------------------------------------------------------------- /src/proxyIDirect3D9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/proxyIDirect3D9.cpp -------------------------------------------------------------------------------- /src/proxyIDirect3D9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/proxyIDirect3D9.h -------------------------------------------------------------------------------- /src/proxyIDirect3DDevice9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/proxyIDirect3DDevice9.cpp -------------------------------------------------------------------------------- /src/proxyIDirect3DDevice9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/proxyIDirect3DDevice9.h -------------------------------------------------------------------------------- /src/rsrc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/rsrc.rc -------------------------------------------------------------------------------- /src/rsrc/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/rsrc/icon.ico -------------------------------------------------------------------------------- /src/samp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/samp.cpp -------------------------------------------------------------------------------- /src/samp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/samp.h -------------------------------------------------------------------------------- /src/sparsehash/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/config.h.in -------------------------------------------------------------------------------- /src/sparsehash/config.h.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/config.h.include -------------------------------------------------------------------------------- /src/sparsehash/google/dense_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/google/dense_hash_map.h -------------------------------------------------------------------------------- /src/sparsehash/google/dense_hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/google/dense_hash_set.h -------------------------------------------------------------------------------- /src/sparsehash/google/sparse_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/google/sparse_hash_map.h -------------------------------------------------------------------------------- /src/sparsehash/google/sparse_hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/google/sparse_hash_set.h -------------------------------------------------------------------------------- /src/sparsehash/google/sparsehash/densehashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/google/sparsehash/densehashtable.h -------------------------------------------------------------------------------- /src/sparsehash/google/sparsehash/sparsehashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/google/sparsehash/sparsehashtable.h -------------------------------------------------------------------------------- /src/sparsehash/google/sparsetable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/google/sparsetable.h -------------------------------------------------------------------------------- /src/sparsehash/google/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/google/type_traits.h -------------------------------------------------------------------------------- /src/sparsehash/hashtable_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/hashtable_unittest.cc -------------------------------------------------------------------------------- /src/sparsehash/simple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/simple_test.cc -------------------------------------------------------------------------------- /src/sparsehash/sparsetable_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/sparsetable_unittest.cc -------------------------------------------------------------------------------- /src/sparsehash/time_hash_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/time_hash_map.cc -------------------------------------------------------------------------------- /src/sparsehash/type_traits_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/type_traits_unittest.cc -------------------------------------------------------------------------------- /src/sparsehash/windows/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/windows/config.h -------------------------------------------------------------------------------- /src/sparsehash/windows/google/sparsehash/sparseconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/windows/google/sparsehash/sparseconfig.h -------------------------------------------------------------------------------- /src/sparsehash/windows/port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/windows/port.cc -------------------------------------------------------------------------------- /src/sparsehash/windows/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/windows/port.h -------------------------------------------------------------------------------- /src/sparsehash/words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sparsehash/words -------------------------------------------------------------------------------- /src/sqlite3/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/sqlite3/Readme.txt -------------------------------------------------------------------------------- /src/stddefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/stddefs.h -------------------------------------------------------------------------------- /src/stdtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlastHackNet/mod_sa/HEAD/src/stdtypes.h --------------------------------------------------------------------------------