├── .gitattributes ├── .github ├── assets │ ├── amalgam_combo.png │ ├── amalgam_combo.svg │ ├── amalgam_logo.png │ ├── amalgam_logo.svg │ ├── amalgam_logo_raw.svg │ ├── amalgam_text.png │ ├── amalgam_text.svg │ ├── download.svg │ ├── download_avx2.svg │ ├── freetype.svg │ ├── freetype_avx2.svg │ ├── pdb.svg │ └── wiki │ │ ├── Binds.png │ │ ├── Binds2.png │ │ ├── ESP.png │ │ ├── Home.png │ │ └── Playerlist.png └── workflows │ └── msbuild.yml ├── .gitignore ├── Amalgam.sln ├── Amalgam ├── Amalgam.vcxproj ├── Amalgam.vcxproj.filters ├── cpp.hint ├── include │ ├── ImGui │ │ ├── LanguageDefinitions.cpp │ │ ├── TextEditor.cpp │ │ ├── TextEditor.h │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_draw.cpp │ │ ├── imgui_freetype.cpp │ │ ├── imgui_freetype.h │ │ ├── imgui_impl_dx9.cpp │ │ ├── imgui_impl_dx9.h │ │ ├── imgui_impl_win32.cpp │ │ ├── imgui_impl_win32.h │ │ ├── imgui_internal.h │ │ ├── imgui_stdlib.cpp │ │ ├── imgui_stdlib.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ └── imstb_truetype.h │ ├── MinHook │ │ ├── MinHook.h │ │ ├── buffer.c │ │ ├── buffer.h │ │ ├── hde │ │ │ ├── hde32.c │ │ │ ├── hde32.h │ │ │ ├── hde64.c │ │ │ ├── hde64.h │ │ │ ├── pstdint.h │ │ │ ├── table32.h │ │ │ └── table64.h │ │ ├── hook.c │ │ ├── trampoline.c │ │ └── trampoline.h │ └── freetype │ │ ├── config │ │ ├── ftconfig.h │ │ ├── ftheader.h │ │ ├── ftmodule.h │ │ ├── ftoption.h │ │ ├── ftstdlib.h │ │ ├── integer-types.h │ │ ├── mac-support.h │ │ └── public-macros.h │ │ ├── freetype.h │ │ ├── freetype.lib │ │ ├── ft2build.h │ │ ├── ftadvanc.h │ │ ├── ftbbox.h │ │ ├── ftbdf.h │ │ ├── ftbitmap.h │ │ ├── ftbzip2.h │ │ ├── ftcache.h │ │ ├── ftchapters.h │ │ ├── ftcid.h │ │ ├── ftcolor.h │ │ ├── ftdriver.h │ │ ├── fterrdef.h │ │ ├── fterrors.h │ │ ├── ftfntfmt.h │ │ ├── ftgasp.h │ │ ├── ftglyph.h │ │ ├── ftgxval.h │ │ ├── ftgzip.h │ │ ├── ftimage.h │ │ ├── ftincrem.h │ │ ├── ftlcdfil.h │ │ ├── ftlist.h │ │ ├── ftlogging.h │ │ ├── ftlzw.h │ │ ├── ftmac.h │ │ ├── ftmm.h │ │ ├── ftmodapi.h │ │ ├── ftmoderr.h │ │ ├── ftotval.h │ │ ├── ftoutln.h │ │ ├── ftparams.h │ │ ├── ftpfr.h │ │ ├── ftrender.h │ │ ├── ftsizes.h │ │ ├── ftsnames.h │ │ ├── ftstroke.h │ │ ├── ftsynth.h │ │ ├── ftsystem.h │ │ ├── fttrigon.h │ │ ├── fttypes.h │ │ ├── ftwinfnt.h │ │ ├── internal │ │ ├── autohint.h │ │ ├── cffotypes.h │ │ ├── cfftypes.h │ │ ├── compiler-macros.h │ │ ├── ftcalc.h │ │ ├── ftdebug.h │ │ ├── ftdrv.h │ │ ├── ftgloadr.h │ │ ├── fthash.h │ │ ├── ftmemory.h │ │ ├── ftmmtypes.h │ │ ├── ftobjs.h │ │ ├── ftpsprop.h │ │ ├── ftrfork.h │ │ ├── ftserv.h │ │ ├── ftstream.h │ │ ├── fttrace.h │ │ ├── ftvalid.h │ │ ├── psaux.h │ │ ├── pshints.h │ │ ├── services │ │ │ ├── svbdf.h │ │ │ ├── svcfftl.h │ │ │ ├── svcid.h │ │ │ ├── svfntfmt.h │ │ │ ├── svgldict.h │ │ │ ├── svgxval.h │ │ │ ├── svkern.h │ │ │ ├── svmetric.h │ │ │ ├── svmm.h │ │ │ ├── svotval.h │ │ │ ├── svpfr.h │ │ │ ├── svpostnm.h │ │ │ ├── svprop.h │ │ │ ├── svpscmap.h │ │ │ ├── svpsinfo.h │ │ │ ├── svsfnt.h │ │ │ ├── svttcmap.h │ │ │ ├── svtteng.h │ │ │ ├── svttglyf.h │ │ │ └── svwinfnt.h │ │ ├── sfnt.h │ │ ├── svginterface.h │ │ ├── t1types.h │ │ ├── tttypes.h │ │ └── wofftypes.h │ │ ├── otsvg.h │ │ ├── t1tables.h │ │ ├── ttnameid.h │ │ ├── tttables.h │ │ └── tttags.h ├── packages.config └── src │ ├── BytePatches │ ├── BytePatches.cpp │ └── BytePatches.h │ ├── Core │ ├── Core.cpp │ └── Core.h │ ├── DllMain.cpp │ ├── Features │ ├── Aimbot │ │ ├── Aimbot.cpp │ │ ├── Aimbot.h │ │ ├── AimbotGlobal │ │ │ ├── AimbotGlobal.cpp │ │ │ └── AimbotGlobal.h │ │ ├── AimbotHitscan │ │ │ ├── AimbotHitscan.cpp │ │ │ └── AimbotHitscan.h │ │ ├── AimbotMelee │ │ │ ├── AimbotMelee.cpp │ │ │ └── AimbotMelee.h │ │ ├── AimbotProjectile │ │ │ ├── AimbotProjectile.cpp │ │ │ └── AimbotProjectile.h │ │ ├── AutoAirblast │ │ │ ├── AutoAirblast.cpp │ │ │ └── AutoAirblast.h │ │ ├── AutoDetonate │ │ │ ├── AutoDetonate.cpp │ │ │ └── AutoDetonate.h │ │ ├── AutoHeal │ │ │ ├── AutoHeal.cpp │ │ │ └── AutoHeal.h │ │ └── AutoRocketJump │ │ │ ├── AutoRocketJump.cpp │ │ │ └── AutoRocketJump.h │ ├── Backtrack │ │ ├── Backtrack.cpp │ │ └── Backtrack.h │ ├── Binds │ │ ├── Binds.cpp │ │ └── Binds.h │ ├── CheaterDetection │ │ ├── CheaterDetection.cpp │ │ └── CheaterDetection.h │ ├── Commands │ │ ├── Commands.cpp │ │ └── Commands.h │ ├── Configs │ │ ├── Configs.cpp │ │ └── Configs.h │ ├── CritHack │ │ ├── CritHack.cpp │ │ └── CritHack.h │ ├── EnginePrediction │ │ ├── EnginePrediction.cpp │ │ └── EnginePrediction.h │ ├── ImGui │ │ ├── Fonts │ │ │ ├── CascadiaMono │ │ │ │ └── CascadiaMono.h │ │ │ ├── MaterialDesign │ │ │ │ ├── IconDefinitions.h │ │ │ │ └── MaterialIcons.h │ │ │ └── Roboto │ │ │ │ ├── RobotoBlack.h │ │ │ │ ├── RobotoBold.h │ │ │ │ └── RobotoMedium.h │ │ ├── Menu │ │ │ ├── Components.h │ │ │ ├── Menu.cpp │ │ │ └── Menu.h │ │ ├── Render.cpp │ │ └── Render.h │ ├── Misc │ │ ├── AutoQueue │ │ │ ├── AutoQueue.cpp │ │ │ └── AutoQueue.h │ │ ├── AutoVote │ │ │ ├── AutoVote.cpp │ │ │ └── AutoVote.h │ │ ├── Misc.cpp │ │ └── Misc.h │ ├── NetworkFix │ │ ├── NetworkFix.cpp │ │ └── NetworkFix.h │ ├── NoSpread │ │ ├── NoSpread.cpp │ │ ├── NoSpread.h │ │ ├── NoSpreadHitscan │ │ │ ├── NoSpreadHitscan.cpp │ │ │ └── NoSpreadHitscan.h │ │ └── NoSpreadProjectile │ │ │ ├── NoSpreadProjectile.cpp │ │ │ └── NoSpreadProjectile.h │ ├── Output │ │ ├── Output.cpp │ │ └── Output.h │ ├── PacketManip │ │ ├── AntiAim │ │ │ ├── AntiAim.cpp │ │ │ └── AntiAim.h │ │ ├── FakeLag │ │ │ ├── FakeLag.cpp │ │ │ └── FakeLag.h │ │ ├── PacketManip.cpp │ │ └── PacketManip.h │ ├── Players │ │ ├── PlayerCore.cpp │ │ ├── PlayerCore.h │ │ ├── PlayerUtils.cpp │ │ └── PlayerUtils.h │ ├── Resolver │ │ ├── Resolver.cpp │ │ └── Resolver.h │ ├── Simulation │ │ ├── MovementSimulation │ │ │ ├── MovementSimulation.cpp │ │ │ └── MovementSimulation.h │ │ └── ProjectileSimulation │ │ │ ├── ProjectileSimulation.cpp │ │ │ └── ProjectileSimulation.h │ ├── Spectate │ │ ├── Spectate.cpp │ │ └── Spectate.h │ ├── Ticks │ │ ├── Ticks.cpp │ │ └── Ticks.h │ └── Visuals │ │ ├── CameraWindow │ │ ├── CameraWindow.cpp │ │ └── CameraWindow.h │ │ ├── Chams │ │ ├── Chams.cpp │ │ └── Chams.h │ │ ├── ESP │ │ ├── ESP.cpp │ │ └── ESP.h │ │ ├── FakeAngle │ │ ├── FakeAngle.cpp │ │ └── FakeAngle.h │ │ ├── Glow │ │ ├── Glow.cpp │ │ └── Glow.h │ │ ├── Groups │ │ ├── Groups.cpp │ │ └── Groups.h │ │ ├── Materials │ │ ├── Materials.cpp │ │ └── Materials.h │ │ ├── Notifications │ │ ├── Notifications.cpp │ │ └── Notifications.h │ │ ├── OffscreenArrows │ │ ├── OffscreenArrows.cpp │ │ └── OffscreenArrows.h │ │ ├── PlayerConditions │ │ ├── PlayerConditions.cpp │ │ └── PlayerConditions.h │ │ ├── SpectatorList │ │ ├── SpectatorList.cpp │ │ └── SpectatorList.h │ │ ├── Visuals.cpp │ │ └── Visuals.h │ ├── Hooks │ ├── CAchievementMgr_CheckAchievementsEnabled.cpp │ ├── CAttributeManager_AttribHookValue.cpp │ ├── CBaseAnimating_Interpolate.cpp │ ├── CBaseAnimating_MaintainSequenceTransitions.cpp │ ├── CBaseAnimating_SetSequence.cpp │ ├── CBaseAnimating_SetupBones.cpp │ ├── CBaseAnimating_UpdateClientSideAnimation.cpp │ ├── CBaseEntity_BaseInterpolatePart1.cpp │ ├── CBaseEntity_EstimateAbsVelocity.cpp │ ├── CBaseEntity_ResetLatched.cpp │ ├── CBaseEntity_SetAbsVelocity.cpp │ ├── CBaseEntity_WorldSpaceCenter.cpp │ ├── CBaseHudChatLine_InsertAndColorizeText.cpp │ ├── CBasePlayer_CalcObserverView.cpp │ ├── CBasePlayer_CalcView.cpp │ ├── CBasePlayer_CalcViewModelView.cpp │ ├── CBasePlayer_ItemPostFrame.cpp │ ├── CBaseViewModel_ShouldFlipViewModel.cpp │ ├── CClientModeShared_DoPostScreenSpaceEffects.cpp │ ├── CClientModeShared_OverrideView.cpp │ ├── CClientModeShared_ShouldDrawViewModel.cpp │ ├── CClientState_GetClientInterpAmount.cpp │ ├── CClientState_ProcessFixAngle.cpp │ ├── CHLClient_CreateMove.cpp │ ├── CHLClient_DispatchUserMessage.cpp │ ├── CHLClient_FrameStageNotify.cpp │ ├── CHLClient_LevelShutdown.cpp │ ├── CHudCrosshair_GetDrawPosition.cpp │ ├── CInput_GetUserCmd.cpp │ ├── CInput_ValidateUserCmd.cpp │ ├── CInventoryManager_ShowItemsPickedUp.cpp │ ├── CL_CheckForPureServerWhitelist.cpp │ ├── CL_Move.cpp │ ├── CL_ProcessPacketEntities.cpp │ ├── CL_ReadPackets.cpp │ ├── CMatchInviteNotification_OnTick.cpp │ ├── CMaterial_Uncache.cpp │ ├── CNetChannel_SendDatagram.cpp │ ├── CNetChannel_SendNetMsg.cpp │ ├── COPRenderSprites_Render.cpp │ ├── CParticleProperty_Create.cpp │ ├── CPhysicsObject_OutputDebugInfo.cpp │ ├── CPlayerResource_GetPlayerName.cpp │ ├── CPrediction_RunSimulation.cpp │ ├── CRendering3dView_EnableWorldFog.cpp │ ├── CSkyboxView_Enable3dSkyboxFog.cpp │ ├── CSniperDot_GetRenderingPositions.cpp │ ├── CSoundEmitterSystem_EmitSound.cpp │ ├── CStaticPropMgr_ComputePropOpacity.cpp │ ├── CStaticPropMgr_DrawStaticProps.cpp │ ├── CStudioRender_DrawModelStaticProp.cpp │ ├── CTFBadgePanel_SetupBadge.cpp │ ├── CTFClientScoreBoardDialog_UpdatePlayerAvatar.cpp │ ├── CTFGCClientSystem_UpdateAssignedLobby.cpp │ ├── CTFInput_ApplyMouse.cpp │ ├── CTFPlayerInventory_GetMaxItemCount.cpp │ ├── CTFPlayerInventory_VerifyChangedLoadoutsAreValid.cpp │ ├── CTFPlayerPanel_GetTeam.cpp │ ├── CTFPlayerShared_InCond.cpp │ ├── CTFPlayerShared_IsPlayerDominated.cpp │ ├── CTFPlayer_AvoidPlayers.cpp │ ├── CTFPlayer_BRenderAsZombie.cpp │ ├── CTFPlayer_BuildTransformations.cpp │ ├── CTFPlayer_DoAnimationEvent.cpp │ ├── CTFPlayer_FireBullet.cpp │ ├── CTFPlayer_GetMinFOV.cpp │ ├── CTFPlayer_IsPlayerClass.cpp │ ├── CTFPlayer_ShouldDraw.cpp │ ├── CTFPlayer_UpdateStepSound.cpp │ ├── CTFRagdoll_CreateTFRagdoll.cpp │ ├── CTFRocketLauncher_CheckReloadMisfire.cpp │ ├── CTFWeaponBase_CalcIsAttackCritical.cpp │ ├── CTFWeaponBase_CanFireRandomCriticalShot.cpp │ ├── CTFWeaponBase_GetShootSound.cpp │ ├── CThirdPersonManager_Update.cpp │ ├── CViewRender_DrawUnderwaterOverlay.cpp │ ├── CViewRender_LevelInit.cpp │ ├── CViewRender_PerformScreenOverlay.cpp │ ├── CViewRender_RenderView.cpp │ ├── CWeaponMedigun_PrimaryAttack.cpp │ ├── Cbuf_ExecuteCommand.cpp │ ├── ClientModeTFNormal_BIsFriendOrPartyMember.cpp │ ├── DSP_Process.cpp │ ├── DataTable_Warning.cpp │ ├── Direct3DDevice9.cpp │ ├── Direct3DDevice9.h │ ├── DoEnginePostProcessing.cpp │ ├── FX_FireBullets.cpp │ ├── GetClientInterpAmount.cpp │ ├── HostState_Shutdown.cpp │ ├── IEngineTrace_SetTraceEntity.cpp │ ├── IEngineTrace_TraceRay.cpp │ ├── IEngineVGui_Paint.cpp │ ├── IMatSystemSurface_OnScreenSizeChanged.cpp │ ├── IMaterialSystem_FindTexture.cpp │ ├── IPanel_PaintTraverse.cpp │ ├── ISteamFriends_GetFriendPersonaName.cpp │ ├── ISteamNetworkingUtils_GetPingToDataCenter.cpp │ ├── IVModelRender_DrawModelExecute.cpp │ ├── IVModelRender_ForcedMaterialOverride.cpp │ ├── KeyValues_SetInt.cpp │ ├── NotificationQueue_Add.cpp │ ├── R_DrawSkyBox.cpp │ ├── RecvProxy_SimulationTime.cpp │ ├── TF_IsHolidayActive.cpp │ ├── VGuiMenuBuilder_AddMenuItem.cpp │ └── bf_read_ReadString.cpp │ ├── SDK │ ├── Definitions │ │ ├── Classes.h │ │ ├── Definitions.h │ │ ├── Interfaces.h │ │ ├── Interfaces │ │ │ ├── CClientModeShared.h │ │ │ ├── CClientState.h │ │ │ ├── CGlobalVarsBase.h │ │ │ ├── CHLClient.h │ │ │ ├── CTFGCClientSystem.h │ │ │ ├── CTFGameRules.h │ │ │ ├── CTFPartyClient.h │ │ │ ├── ICVar.h │ │ │ ├── IClientEntityList.h │ │ │ ├── IEngineTrace.h │ │ │ ├── IEngineVGui.h │ │ │ ├── IFileSystem.h │ │ │ ├── IGameEvents.h │ │ │ ├── IGameMovement.h │ │ │ ├── IInput.h │ │ │ ├── IInputSystem.h │ │ │ ├── IKeyValuesSystem.h │ │ │ ├── ILocalize.h │ │ │ ├── IMatSystemSurface.h │ │ │ ├── IMaterialSystem.h │ │ │ ├── IMemAlloc.h │ │ │ ├── IMoveHelper.h │ │ │ ├── IPanel.h │ │ │ ├── IStudioRender.h │ │ │ ├── IUniformRandomStream.h │ │ │ ├── IVEngineClient.h │ │ │ ├── IVModelInfo.h │ │ │ ├── IVModelRender.h │ │ │ ├── IVRenderView.h │ │ │ ├── IViewRender.h │ │ │ ├── Interface.h │ │ │ ├── Prediction.h │ │ │ ├── SteamInterfaces.h │ │ │ ├── VPhysics.h │ │ │ └── ViewRenderBeams.h │ │ ├── Main │ │ │ ├── CBaseAnimating.cpp │ │ │ ├── CBaseAnimating.h │ │ │ ├── CBaseCombatCharacter.cpp │ │ │ ├── CBaseCombatCharacter.h │ │ │ ├── CBaseCombatWeapon.h │ │ │ ├── CBaseEntity.cpp │ │ │ ├── CBaseEntity.h │ │ │ ├── CBaseFlex.h │ │ │ ├── CBaseHandle.h │ │ │ ├── CBaseObject.cpp │ │ │ ├── CBaseObject.h │ │ │ ├── CBasePlayer.cpp │ │ │ ├── CBasePlayer.h │ │ │ ├── CBaseProjectile.cpp │ │ │ ├── CBaseProjectile.h │ │ │ ├── CBaseTrace.h │ │ │ ├── CCaptureFlag.h │ │ │ ├── CCollisionProperty.h │ │ │ ├── CEconDefinition.h │ │ │ ├── CEconEntity.h │ │ │ ├── CEconWearable.h │ │ │ ├── CEntitySphereQuery.h │ │ │ ├── CGameTrace.h │ │ │ ├── CModel.h │ │ │ ├── CMultiPlayerAnimState.h │ │ │ ├── CParticleProperty.h │ │ │ ├── CPlayerResource.h │ │ │ ├── CPredictionCopy.h │ │ │ ├── CSniperDot.h │ │ │ ├── CTFPlayer.cpp │ │ │ ├── CTFPlayer.h │ │ │ ├── CTFPlayerResource.h │ │ │ ├── CTFWeaponBase.cpp │ │ │ ├── CTFWeaponBase.h │ │ │ ├── CUserCmd.h │ │ │ ├── IAchievementMgr.h │ │ │ ├── IClientEntity.h │ │ │ ├── IClientNetworkable.h │ │ │ ├── IClientRenderable.h │ │ │ ├── IClientThinkable.h │ │ │ ├── IClientUnknown.h │ │ │ ├── IHandleEntity.h │ │ │ ├── IMaterial.h │ │ │ ├── IMaterialVar.h │ │ │ ├── INetChannel.h │ │ │ ├── INetChannelInfo.h │ │ │ ├── INetMessage.cpp │ │ │ ├── INetMessage.h │ │ │ ├── INetworkMessage.h │ │ │ ├── INetworkSystem.h │ │ │ ├── ITexture.h │ │ │ ├── KeyValues.cpp │ │ │ ├── KeyValues.h │ │ │ ├── MD5.cpp │ │ │ ├── MD5.h │ │ │ ├── NetChannel.h │ │ │ ├── PlayerStats.h │ │ │ └── UtlVector.h │ │ ├── Misc │ │ │ ├── Activity.h │ │ │ ├── AnalogCode.h │ │ │ ├── BSPFlags.h │ │ │ ├── BaseTypes.h │ │ │ ├── ButtonCode.h │ │ │ ├── CGameEventListener.h │ │ │ ├── CInterpolatedVar.h │ │ │ ├── CRangeCheckedVar.h │ │ │ ├── CViewSetup.h │ │ │ ├── ChecksumCRC.cpp │ │ │ ├── ChecksumCRC.h │ │ │ ├── ClientClass.h │ │ │ ├── CommonMacros.h │ │ │ ├── ConVar.h │ │ │ ├── Cursor.h │ │ │ ├── Datamap.h │ │ │ ├── Deformations.h │ │ │ ├── IAppSystem.h │ │ │ ├── IClientMode.h │ │ │ ├── IColorCorrectionSystem.h │ │ │ ├── IConVar.h │ │ │ ├── IGameResources.h │ │ │ ├── IHTML.h │ │ │ ├── IImage.h │ │ │ ├── IMDLCache.h │ │ │ ├── IMatchGroupDescription.h │ │ │ ├── IMaterialSystemHardwareConfig.h │ │ │ ├── IPrediction.h │ │ │ ├── IRefCounted.h │ │ │ ├── ISpatialPartition.h │ │ │ ├── ISurface.h │ │ │ ├── IVguiMatInfo.h │ │ │ ├── IVguiMatInfoVar.h │ │ │ ├── ImageFormat.h │ │ │ ├── InputEnums.h │ │ │ ├── KeyCode.h │ │ │ ├── LightDesc.h │ │ │ ├── LocalFlexController.h │ │ │ ├── Modes.h │ │ │ ├── MouseCode.h │ │ │ ├── NetAdr.h │ │ │ ├── ServerClass.h │ │ │ ├── SmartPtr.h │ │ │ ├── String.h │ │ │ ├── Studio.h │ │ │ ├── TextureGroupNames.h │ │ │ ├── UtlIntrusiveList.h │ │ │ ├── UtlObjectReference.h │ │ │ ├── VCollide.h │ │ │ ├── VGUI.h │ │ │ ├── VPlane.h │ │ │ ├── VTF.h │ │ │ ├── bitbuf.cpp │ │ │ ├── bitbuf.h │ │ │ ├── bitvec.h │ │ │ ├── dt_common.h │ │ │ ├── dt_recv.h │ │ │ └── dt_send.h │ │ ├── NullInterfaces.cpp │ │ ├── Steam │ │ │ ├── ISteamAppList.h │ │ │ ├── ISteamAppTicket.h │ │ │ ├── ISteamApps.h │ │ │ ├── ISteamClient.h │ │ │ ├── ISteamController.h │ │ │ ├── ISteamDualSense.h │ │ │ ├── ISteamFriends.h │ │ │ ├── ISteamGameCoordinator.h │ │ │ ├── ISteamGameServer.h │ │ │ ├── ISteamGameServerStats.h │ │ │ ├── ISteamHTMLSurface.h │ │ │ ├── ISteamHTTP.h │ │ │ ├── ISteamInput.h │ │ │ ├── ISteamInventory.h │ │ │ ├── ISteamMatchmaking.h │ │ │ ├── ISteamMusic.h │ │ │ ├── ISteamMusicRemote.h │ │ │ ├── ISteamNetworking.h │ │ │ ├── ISteamNetworkingMessages.h │ │ │ ├── ISteamNetworkingSockets.h │ │ │ ├── ISteamNetworkingUtils.h │ │ │ ├── ISteamPS3OverlayRenderer.h │ │ │ ├── ISteamParentalSettings.h │ │ │ ├── ISteamRemotePlay.h │ │ │ ├── ISteamRemoteStorage.h │ │ │ ├── ISteamScreenshots.h │ │ │ ├── ISteamUGC.h │ │ │ ├── ISteamUser.h │ │ │ ├── ISteamUserStats.h │ │ │ ├── ISteamUtils.h │ │ │ ├── ISteamVideo.h │ │ │ ├── MatchmakingTypes.h │ │ │ ├── SteamClientPublic.h │ │ │ ├── SteamEncryptedAppTicket.h │ │ │ ├── SteamHTTPEnums.h │ │ │ ├── SteamNetworkingFakeIP.h │ │ │ ├── SteamNetworkingTypes.h │ │ │ ├── SteamPS3Params.h │ │ │ ├── SteamTypes.h │ │ │ ├── SteamUniverse.h │ │ │ ├── Steam_API.h │ │ │ ├── Steam_API.json │ │ │ ├── Steam_API_Common.h │ │ │ ├── Steam_API_Flat.h │ │ │ ├── Steam_API_Internal.h │ │ │ └── Steam_Gameserver.h │ │ └── Types.h │ ├── Events │ │ ├── Events.cpp │ │ └── Events.h │ ├── Globals.h │ ├── Helpers │ │ ├── ConVars │ │ │ ├── ConVars.cpp │ │ │ └── ConVars.h │ │ ├── Draw │ │ │ ├── Draw.cpp │ │ │ └── Draw.h │ │ ├── Entities │ │ │ ├── Entities.cpp │ │ │ └── Entities.h │ │ ├── Fonts │ │ │ ├── Fonts.cpp │ │ │ └── Fonts.h │ │ ├── Particles │ │ │ └── Particles.h │ │ └── TraceFilters │ │ │ ├── TraceFilters.cpp │ │ │ └── TraceFilters.h │ ├── SDK.cpp │ ├── SDK.h │ └── Vars.h │ └── Utils │ ├── ExceptionHandler │ ├── ExceptionHandler.cpp │ └── ExceptionHandler.h │ ├── Hash │ └── FNV1A.h │ ├── Hooks │ ├── Hooks.cpp │ └── Hooks.h │ ├── Interfaces │ ├── Interfaces.cpp │ └── Interfaces.h │ ├── KeyHandler │ ├── KeyHandler.cpp │ └── KeyHandler.h │ ├── Macros │ └── Macros.h │ ├── Math │ └── Math.h │ ├── Memory │ ├── Memory.cpp │ └── Memory.h │ ├── NetVars │ ├── NetVars.cpp │ └── NetVars.h │ ├── Signatures │ ├── Signatures.cpp │ └── Signatures.h │ └── Timer │ ├── Timer.cpp │ └── Timer.h ├── LICENSE.md └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/assets/amalgam_combo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/amalgam_combo.png -------------------------------------------------------------------------------- /.github/assets/amalgam_combo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/amalgam_combo.svg -------------------------------------------------------------------------------- /.github/assets/amalgam_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/amalgam_logo.png -------------------------------------------------------------------------------- /.github/assets/amalgam_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/amalgam_logo.svg -------------------------------------------------------------------------------- /.github/assets/amalgam_logo_raw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/amalgam_logo_raw.svg -------------------------------------------------------------------------------- /.github/assets/amalgam_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/amalgam_text.png -------------------------------------------------------------------------------- /.github/assets/amalgam_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/amalgam_text.svg -------------------------------------------------------------------------------- /.github/assets/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/download.svg -------------------------------------------------------------------------------- /.github/assets/download_avx2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/download_avx2.svg -------------------------------------------------------------------------------- /.github/assets/freetype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/freetype.svg -------------------------------------------------------------------------------- /.github/assets/freetype_avx2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/freetype_avx2.svg -------------------------------------------------------------------------------- /.github/assets/pdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/pdb.svg -------------------------------------------------------------------------------- /.github/assets/wiki/Binds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/wiki/Binds.png -------------------------------------------------------------------------------- /.github/assets/wiki/Binds2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/wiki/Binds2.png -------------------------------------------------------------------------------- /.github/assets/wiki/ESP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/wiki/ESP.png -------------------------------------------------------------------------------- /.github/assets/wiki/Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/wiki/Home.png -------------------------------------------------------------------------------- /.github/assets/wiki/Playerlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/assets/wiki/Playerlist.png -------------------------------------------------------------------------------- /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/.gitignore -------------------------------------------------------------------------------- /Amalgam.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam.sln -------------------------------------------------------------------------------- /Amalgam/Amalgam.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/Amalgam.vcxproj -------------------------------------------------------------------------------- /Amalgam/Amalgam.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/Amalgam.vcxproj.filters -------------------------------------------------------------------------------- /Amalgam/cpp.hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/cpp.hint -------------------------------------------------------------------------------- /Amalgam/include/ImGui/LanguageDefinitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/LanguageDefinitions.cpp -------------------------------------------------------------------------------- /Amalgam/include/ImGui/TextEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/TextEditor.cpp -------------------------------------------------------------------------------- /Amalgam/include/ImGui/TextEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/TextEditor.h -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imconfig.h -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imgui.cpp -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imgui.h -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imgui_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imgui_freetype.cpp -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imgui_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imgui_freetype.h -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imgui_impl_win32.h -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imgui_stdlib.cpp -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imgui_stdlib.h -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imgui_tables.cpp -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /Amalgam/include/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /Amalgam/include/MinHook/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/MinHook/MinHook.h -------------------------------------------------------------------------------- /Amalgam/include/MinHook/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/MinHook/buffer.c -------------------------------------------------------------------------------- /Amalgam/include/MinHook/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/MinHook/buffer.h -------------------------------------------------------------------------------- /Amalgam/include/MinHook/hde/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/MinHook/hde/hde32.c -------------------------------------------------------------------------------- /Amalgam/include/MinHook/hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/MinHook/hde/hde32.h -------------------------------------------------------------------------------- /Amalgam/include/MinHook/hde/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/MinHook/hde/hde64.c -------------------------------------------------------------------------------- /Amalgam/include/MinHook/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/MinHook/hde/hde64.h -------------------------------------------------------------------------------- /Amalgam/include/MinHook/hde/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/MinHook/hde/pstdint.h -------------------------------------------------------------------------------- /Amalgam/include/MinHook/hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/MinHook/hde/table32.h -------------------------------------------------------------------------------- /Amalgam/include/MinHook/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/MinHook/hde/table64.h -------------------------------------------------------------------------------- /Amalgam/include/MinHook/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/MinHook/hook.c -------------------------------------------------------------------------------- /Amalgam/include/MinHook/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/MinHook/trampoline.c -------------------------------------------------------------------------------- /Amalgam/include/MinHook/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/MinHook/trampoline.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/config/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/config/ftconfig.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/config/ftheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/config/ftheader.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/config/ftmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/config/ftmodule.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/config/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/config/ftoption.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/config/ftstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/config/ftstdlib.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/config/integer-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/config/integer-types.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/config/mac-support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/config/mac-support.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/config/public-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/config/public-macros.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/freetype.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/freetype.lib -------------------------------------------------------------------------------- /Amalgam/include/freetype/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ft2build.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftadvanc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftadvanc.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftbbox.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftbdf.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftbitmap.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftbzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftbzip2.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftcache.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftchapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftchapters.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftcid.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftcolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftcolor.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftdriver.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/fterrdef.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/fterrors.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftfntfmt.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftgasp.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftglyph.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftgxval.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftgzip.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftimage.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftincrem.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftlist.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftlogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftlogging.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftlzw.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftmac.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftmm.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftmodapi.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftmoderr.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftotval.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftoutln.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftparams.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftpfr.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftrender.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftsizes.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftsnames.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftstroke.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftsynth.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftsystem.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/fttrigon.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/fttypes.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ftwinfnt.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/autohint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/autohint.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/cffotypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/cffotypes.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/cfftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/cfftypes.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/compiler-macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/compiler-macros.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/ftcalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/ftcalc.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/ftdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/ftdebug.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/ftdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/ftdrv.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/ftgloadr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/ftgloadr.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/fthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/fthash.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/ftmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/ftmemory.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/ftmmtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/ftmmtypes.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/ftobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/ftobjs.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/ftpsprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/ftpsprop.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/ftrfork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/ftrfork.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/ftserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/ftserv.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/ftstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/ftstream.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/fttrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/fttrace.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/ftvalid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/ftvalid.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/psaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/psaux.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/pshints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/pshints.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svbdf.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svcfftl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svcfftl.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svcid.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svfntfmt.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svgldict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svgldict.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svgxval.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svkern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svkern.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svmetric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svmetric.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svmm.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svotval.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svpfr.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svpostnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svpostnm.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svprop.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svpscmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svpscmap.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svpsinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svpsinfo.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svsfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svsfnt.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svttcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svttcmap.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svtteng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svtteng.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svttglyf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svttglyf.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/services/svwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/services/svwinfnt.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/sfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/sfnt.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/svginterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/svginterface.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/t1types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/t1types.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/tttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/tttypes.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/internal/wofftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/internal/wofftypes.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/otsvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/otsvg.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/t1tables.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/ttnameid.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/tttables.h -------------------------------------------------------------------------------- /Amalgam/include/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/include/freetype/tttags.h -------------------------------------------------------------------------------- /Amalgam/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/packages.config -------------------------------------------------------------------------------- /Amalgam/src/BytePatches/BytePatches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/BytePatches/BytePatches.cpp -------------------------------------------------------------------------------- /Amalgam/src/BytePatches/BytePatches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/BytePatches/BytePatches.h -------------------------------------------------------------------------------- /Amalgam/src/Core/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Core/Core.cpp -------------------------------------------------------------------------------- /Amalgam/src/Core/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Core/Core.h -------------------------------------------------------------------------------- /Amalgam/src/DllMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/DllMain.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/Aimbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/Aimbot.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/Aimbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/Aimbot.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/AimbotGlobal/AimbotGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/AimbotGlobal/AimbotGlobal.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/AimbotGlobal/AimbotGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/AimbotGlobal/AimbotGlobal.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/AimbotHitscan/AimbotHitscan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/AimbotHitscan/AimbotHitscan.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/AimbotHitscan/AimbotHitscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/AimbotHitscan/AimbotHitscan.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/AimbotMelee/AimbotMelee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/AimbotMelee/AimbotMelee.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/AimbotMelee/AimbotMelee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/AimbotMelee/AimbotMelee.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/AimbotProjectile/AimbotProjectile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/AimbotProjectile/AimbotProjectile.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/AimbotProjectile/AimbotProjectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/AimbotProjectile/AimbotProjectile.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/AutoAirblast/AutoAirblast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/AutoAirblast/AutoAirblast.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/AutoAirblast/AutoAirblast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/AutoAirblast/AutoAirblast.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/AutoDetonate/AutoDetonate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/AutoDetonate/AutoDetonate.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/AutoDetonate/AutoDetonate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/AutoDetonate/AutoDetonate.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/AutoHeal/AutoHeal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/AutoHeal/AutoHeal.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/AutoHeal/AutoHeal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/AutoHeal/AutoHeal.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/AutoRocketJump/AutoRocketJump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/AutoRocketJump/AutoRocketJump.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Aimbot/AutoRocketJump/AutoRocketJump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Aimbot/AutoRocketJump/AutoRocketJump.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Backtrack/Backtrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Backtrack/Backtrack.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Backtrack/Backtrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Backtrack/Backtrack.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Binds/Binds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Binds/Binds.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Binds/Binds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Binds/Binds.h -------------------------------------------------------------------------------- /Amalgam/src/Features/CheaterDetection/CheaterDetection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/CheaterDetection/CheaterDetection.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/CheaterDetection/CheaterDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/CheaterDetection/CheaterDetection.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Commands/Commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Commands/Commands.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Commands/Commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Commands/Commands.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Configs/Configs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Configs/Configs.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Configs/Configs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Configs/Configs.h -------------------------------------------------------------------------------- /Amalgam/src/Features/CritHack/CritHack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/CritHack/CritHack.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/CritHack/CritHack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/CritHack/CritHack.h -------------------------------------------------------------------------------- /Amalgam/src/Features/EnginePrediction/EnginePrediction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/EnginePrediction/EnginePrediction.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/EnginePrediction/EnginePrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/EnginePrediction/EnginePrediction.h -------------------------------------------------------------------------------- /Amalgam/src/Features/ImGui/Fonts/CascadiaMono/CascadiaMono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/ImGui/Fonts/CascadiaMono/CascadiaMono.h -------------------------------------------------------------------------------- /Amalgam/src/Features/ImGui/Fonts/MaterialDesign/IconDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/ImGui/Fonts/MaterialDesign/IconDefinitions.h -------------------------------------------------------------------------------- /Amalgam/src/Features/ImGui/Fonts/MaterialDesign/MaterialIcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/ImGui/Fonts/MaterialDesign/MaterialIcons.h -------------------------------------------------------------------------------- /Amalgam/src/Features/ImGui/Fonts/Roboto/RobotoBlack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/ImGui/Fonts/Roboto/RobotoBlack.h -------------------------------------------------------------------------------- /Amalgam/src/Features/ImGui/Fonts/Roboto/RobotoBold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/ImGui/Fonts/Roboto/RobotoBold.h -------------------------------------------------------------------------------- /Amalgam/src/Features/ImGui/Fonts/Roboto/RobotoMedium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/ImGui/Fonts/Roboto/RobotoMedium.h -------------------------------------------------------------------------------- /Amalgam/src/Features/ImGui/Menu/Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/ImGui/Menu/Components.h -------------------------------------------------------------------------------- /Amalgam/src/Features/ImGui/Menu/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/ImGui/Menu/Menu.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/ImGui/Menu/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/ImGui/Menu/Menu.h -------------------------------------------------------------------------------- /Amalgam/src/Features/ImGui/Render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/ImGui/Render.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/ImGui/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/ImGui/Render.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Misc/AutoQueue/AutoQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Misc/AutoQueue/AutoQueue.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Misc/AutoQueue/AutoQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Misc/AutoQueue/AutoQueue.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Misc/AutoVote/AutoVote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Misc/AutoVote/AutoVote.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Misc/AutoVote/AutoVote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Misc/AutoVote/AutoVote.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Misc/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Misc/Misc.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Misc/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Misc/Misc.h -------------------------------------------------------------------------------- /Amalgam/src/Features/NetworkFix/NetworkFix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/NetworkFix/NetworkFix.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/NetworkFix/NetworkFix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/NetworkFix/NetworkFix.h -------------------------------------------------------------------------------- /Amalgam/src/Features/NoSpread/NoSpread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/NoSpread/NoSpread.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/NoSpread/NoSpread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/NoSpread/NoSpread.h -------------------------------------------------------------------------------- /Amalgam/src/Features/NoSpread/NoSpreadHitscan/NoSpreadHitscan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/NoSpread/NoSpreadHitscan/NoSpreadHitscan.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/NoSpread/NoSpreadHitscan/NoSpreadHitscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/NoSpread/NoSpreadHitscan/NoSpreadHitscan.h -------------------------------------------------------------------------------- /Amalgam/src/Features/NoSpread/NoSpreadProjectile/NoSpreadProjectile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/NoSpread/NoSpreadProjectile/NoSpreadProjectile.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/NoSpread/NoSpreadProjectile/NoSpreadProjectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/NoSpread/NoSpreadProjectile/NoSpreadProjectile.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Output/Output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Output/Output.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Output/Output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Output/Output.h -------------------------------------------------------------------------------- /Amalgam/src/Features/PacketManip/AntiAim/AntiAim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/PacketManip/AntiAim/AntiAim.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/PacketManip/AntiAim/AntiAim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/PacketManip/AntiAim/AntiAim.h -------------------------------------------------------------------------------- /Amalgam/src/Features/PacketManip/FakeLag/FakeLag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/PacketManip/FakeLag/FakeLag.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/PacketManip/FakeLag/FakeLag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/PacketManip/FakeLag/FakeLag.h -------------------------------------------------------------------------------- /Amalgam/src/Features/PacketManip/PacketManip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/PacketManip/PacketManip.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/PacketManip/PacketManip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/PacketManip/PacketManip.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Players/PlayerCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Players/PlayerCore.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Players/PlayerCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Players/PlayerCore.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Players/PlayerUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Players/PlayerUtils.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Players/PlayerUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Players/PlayerUtils.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Resolver/Resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Resolver/Resolver.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Resolver/Resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Resolver/Resolver.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Simulation/MovementSimulation/MovementSimulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Simulation/MovementSimulation/MovementSimulation.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Simulation/MovementSimulation/MovementSimulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Simulation/MovementSimulation/MovementSimulation.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Simulation/ProjectileSimulation/ProjectileSimulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Simulation/ProjectileSimulation/ProjectileSimulation.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Simulation/ProjectileSimulation/ProjectileSimulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Simulation/ProjectileSimulation/ProjectileSimulation.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Spectate/Spectate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Spectate/Spectate.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Spectate/Spectate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Spectate/Spectate.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Ticks/Ticks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Ticks/Ticks.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Ticks/Ticks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Ticks/Ticks.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/CameraWindow/CameraWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/CameraWindow/CameraWindow.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/CameraWindow/CameraWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/CameraWindow/CameraWindow.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/Chams/Chams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/Chams/Chams.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/Chams/Chams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/Chams/Chams.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/ESP/ESP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/ESP/ESP.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/ESP/ESP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/ESP/ESP.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/FakeAngle/FakeAngle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/FakeAngle/FakeAngle.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/FakeAngle/FakeAngle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/FakeAngle/FakeAngle.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/Glow/Glow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/Glow/Glow.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/Glow/Glow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/Glow/Glow.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/Groups/Groups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/Groups/Groups.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/Groups/Groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/Groups/Groups.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/Materials/Materials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/Materials/Materials.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/Materials/Materials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/Materials/Materials.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/Notifications/Notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/Notifications/Notifications.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/Notifications/Notifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/Notifications/Notifications.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/OffscreenArrows/OffscreenArrows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/OffscreenArrows/OffscreenArrows.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/OffscreenArrows/OffscreenArrows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/OffscreenArrows/OffscreenArrows.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/PlayerConditions/PlayerConditions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/PlayerConditions/PlayerConditions.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/PlayerConditions/PlayerConditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/PlayerConditions/PlayerConditions.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/SpectatorList/SpectatorList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/SpectatorList/SpectatorList.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/SpectatorList/SpectatorList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/SpectatorList/SpectatorList.h -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/Visuals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/Visuals.cpp -------------------------------------------------------------------------------- /Amalgam/src/Features/Visuals/Visuals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Features/Visuals/Visuals.h -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CAchievementMgr_CheckAchievementsEnabled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CAchievementMgr_CheckAchievementsEnabled.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CAttributeManager_AttribHookValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CAttributeManager_AttribHookValue.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CBaseAnimating_Interpolate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CBaseAnimating_Interpolate.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CBaseAnimating_MaintainSequenceTransitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CBaseAnimating_MaintainSequenceTransitions.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CBaseAnimating_SetSequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CBaseAnimating_SetSequence.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CBaseAnimating_SetupBones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CBaseAnimating_SetupBones.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CBaseAnimating_UpdateClientSideAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CBaseAnimating_UpdateClientSideAnimation.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CBaseEntity_BaseInterpolatePart1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CBaseEntity_BaseInterpolatePart1.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CBaseEntity_EstimateAbsVelocity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CBaseEntity_EstimateAbsVelocity.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CBaseEntity_ResetLatched.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CBaseEntity_ResetLatched.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CBaseEntity_SetAbsVelocity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CBaseEntity_SetAbsVelocity.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CBaseEntity_WorldSpaceCenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CBaseEntity_WorldSpaceCenter.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CBaseHudChatLine_InsertAndColorizeText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CBaseHudChatLine_InsertAndColorizeText.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CBasePlayer_CalcObserverView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CBasePlayer_CalcObserverView.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CBasePlayer_CalcView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CBasePlayer_CalcView.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CBasePlayer_CalcViewModelView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CBasePlayer_CalcViewModelView.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CBasePlayer_ItemPostFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CBasePlayer_ItemPostFrame.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CBaseViewModel_ShouldFlipViewModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CBaseViewModel_ShouldFlipViewModel.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CClientModeShared_DoPostScreenSpaceEffects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CClientModeShared_DoPostScreenSpaceEffects.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CClientModeShared_OverrideView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CClientModeShared_OverrideView.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CClientModeShared_ShouldDrawViewModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CClientModeShared_ShouldDrawViewModel.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CClientState_GetClientInterpAmount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CClientState_GetClientInterpAmount.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CClientState_ProcessFixAngle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CClientState_ProcessFixAngle.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CHLClient_CreateMove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CHLClient_CreateMove.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CHLClient_DispatchUserMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CHLClient_DispatchUserMessage.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CHLClient_FrameStageNotify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CHLClient_FrameStageNotify.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CHLClient_LevelShutdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CHLClient_LevelShutdown.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CHudCrosshair_GetDrawPosition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CHudCrosshair_GetDrawPosition.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CInput_GetUserCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CInput_GetUserCmd.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CInput_ValidateUserCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CInput_ValidateUserCmd.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CInventoryManager_ShowItemsPickedUp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CInventoryManager_ShowItemsPickedUp.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CL_CheckForPureServerWhitelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CL_CheckForPureServerWhitelist.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CL_Move.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CL_Move.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CL_ProcessPacketEntities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CL_ProcessPacketEntities.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CL_ReadPackets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CL_ReadPackets.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CMatchInviteNotification_OnTick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CMatchInviteNotification_OnTick.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CMaterial_Uncache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CMaterial_Uncache.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CNetChannel_SendDatagram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CNetChannel_SendDatagram.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CNetChannel_SendNetMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CNetChannel_SendNetMsg.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/COPRenderSprites_Render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/COPRenderSprites_Render.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CParticleProperty_Create.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CParticleProperty_Create.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CPhysicsObject_OutputDebugInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CPhysicsObject_OutputDebugInfo.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CPlayerResource_GetPlayerName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CPlayerResource_GetPlayerName.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CPrediction_RunSimulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CPrediction_RunSimulation.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CRendering3dView_EnableWorldFog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CRendering3dView_EnableWorldFog.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CSkyboxView_Enable3dSkyboxFog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CSkyboxView_Enable3dSkyboxFog.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CSniperDot_GetRenderingPositions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CSniperDot_GetRenderingPositions.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CSoundEmitterSystem_EmitSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CSoundEmitterSystem_EmitSound.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CStaticPropMgr_ComputePropOpacity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CStaticPropMgr_ComputePropOpacity.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CStaticPropMgr_DrawStaticProps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CStaticPropMgr_DrawStaticProps.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CStudioRender_DrawModelStaticProp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CStudioRender_DrawModelStaticProp.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFBadgePanel_SetupBadge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFBadgePanel_SetupBadge.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFClientScoreBoardDialog_UpdatePlayerAvatar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFClientScoreBoardDialog_UpdatePlayerAvatar.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFGCClientSystem_UpdateAssignedLobby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFGCClientSystem_UpdateAssignedLobby.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFInput_ApplyMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFInput_ApplyMouse.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFPlayerInventory_GetMaxItemCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFPlayerInventory_GetMaxItemCount.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFPlayerInventory_VerifyChangedLoadoutsAreValid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFPlayerInventory_VerifyChangedLoadoutsAreValid.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFPlayerPanel_GetTeam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFPlayerPanel_GetTeam.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFPlayerShared_InCond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFPlayerShared_InCond.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFPlayerShared_IsPlayerDominated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFPlayerShared_IsPlayerDominated.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFPlayer_AvoidPlayers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFPlayer_AvoidPlayers.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFPlayer_BRenderAsZombie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFPlayer_BRenderAsZombie.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFPlayer_BuildTransformations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFPlayer_BuildTransformations.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFPlayer_DoAnimationEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFPlayer_DoAnimationEvent.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFPlayer_FireBullet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFPlayer_FireBullet.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFPlayer_GetMinFOV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFPlayer_GetMinFOV.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFPlayer_IsPlayerClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFPlayer_IsPlayerClass.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFPlayer_ShouldDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFPlayer_ShouldDraw.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFPlayer_UpdateStepSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFPlayer_UpdateStepSound.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFRagdoll_CreateTFRagdoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFRagdoll_CreateTFRagdoll.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFRocketLauncher_CheckReloadMisfire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFRocketLauncher_CheckReloadMisfire.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFWeaponBase_CalcIsAttackCritical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFWeaponBase_CalcIsAttackCritical.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFWeaponBase_CanFireRandomCriticalShot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFWeaponBase_CanFireRandomCriticalShot.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CTFWeaponBase_GetShootSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CTFWeaponBase_GetShootSound.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CThirdPersonManager_Update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CThirdPersonManager_Update.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CViewRender_DrawUnderwaterOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CViewRender_DrawUnderwaterOverlay.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CViewRender_LevelInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CViewRender_LevelInit.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CViewRender_PerformScreenOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CViewRender_PerformScreenOverlay.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CViewRender_RenderView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CViewRender_RenderView.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/CWeaponMedigun_PrimaryAttack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/CWeaponMedigun_PrimaryAttack.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/Cbuf_ExecuteCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/Cbuf_ExecuteCommand.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/ClientModeTFNormal_BIsFriendOrPartyMember.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/ClientModeTFNormal_BIsFriendOrPartyMember.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/DSP_Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/DSP_Process.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/DataTable_Warning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/DataTable_Warning.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/Direct3DDevice9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/Direct3DDevice9.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/Direct3DDevice9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/Direct3DDevice9.h -------------------------------------------------------------------------------- /Amalgam/src/Hooks/DoEnginePostProcessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/DoEnginePostProcessing.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/FX_FireBullets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/FX_FireBullets.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/GetClientInterpAmount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/GetClientInterpAmount.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/HostState_Shutdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/HostState_Shutdown.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/IEngineTrace_SetTraceEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/IEngineTrace_SetTraceEntity.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/IEngineTrace_TraceRay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/IEngineTrace_TraceRay.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/IEngineVGui_Paint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/IEngineVGui_Paint.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/IMatSystemSurface_OnScreenSizeChanged.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/IMatSystemSurface_OnScreenSizeChanged.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/IMaterialSystem_FindTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/IMaterialSystem_FindTexture.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/IPanel_PaintTraverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/IPanel_PaintTraverse.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/ISteamFriends_GetFriendPersonaName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/ISteamFriends_GetFriendPersonaName.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/ISteamNetworkingUtils_GetPingToDataCenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/ISteamNetworkingUtils_GetPingToDataCenter.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/IVModelRender_DrawModelExecute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/IVModelRender_DrawModelExecute.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/IVModelRender_ForcedMaterialOverride.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/IVModelRender_ForcedMaterialOverride.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/KeyValues_SetInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/KeyValues_SetInt.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/NotificationQueue_Add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/NotificationQueue_Add.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/R_DrawSkyBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/R_DrawSkyBox.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/RecvProxy_SimulationTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/RecvProxy_SimulationTime.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/TF_IsHolidayActive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/TF_IsHolidayActive.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/VGuiMenuBuilder_AddMenuItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/VGuiMenuBuilder_AddMenuItem.cpp -------------------------------------------------------------------------------- /Amalgam/src/Hooks/bf_read_ReadString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Hooks/bf_read_ReadString.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Classes.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Definitions.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/CClientModeShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/CClientModeShared.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/CClientState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/CClientState.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/CGlobalVarsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/CGlobalVarsBase.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/CHLClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/CHLClient.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/CTFGCClientSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/CTFGCClientSystem.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/CTFGameRules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/CTFGameRules.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/CTFPartyClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/CTFPartyClient.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/ICVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/ICVar.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IClientEntityList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IClientEntityList.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IEngineTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IEngineTrace.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IEngineVGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IEngineVGui.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IFileSystem.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IGameEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IGameEvents.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IGameMovement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IGameMovement.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IInput.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IInputSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IInputSystem.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IKeyValuesSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IKeyValuesSystem.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/ILocalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/ILocalize.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IMatSystemSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IMatSystemSurface.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IMaterialSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IMaterialSystem.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IMemAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IMemAlloc.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IMoveHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IMoveHelper.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IPanel.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IStudioRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IStudioRender.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IUniformRandomStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IUniformRandomStream.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IVEngineClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IVEngineClient.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IVModelInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IVModelInfo.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IVModelRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IVModelRender.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IVRenderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IVRenderView.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/IViewRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/IViewRender.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/Interface.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/Prediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/Prediction.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/SteamInterfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/SteamInterfaces.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/VPhysics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/VPhysics.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Interfaces/ViewRenderBeams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Interfaces/ViewRenderBeams.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CBaseAnimating.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CBaseAnimating.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CBaseAnimating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CBaseAnimating.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CBaseCombatCharacter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CBaseCombatCharacter.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CBaseCombatCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CBaseCombatCharacter.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CBaseCombatWeapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CBaseCombatWeapon.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CBaseEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CBaseEntity.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CBaseEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CBaseEntity.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CBaseFlex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CBaseFlex.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CBaseHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CBaseHandle.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CBaseObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CBaseObject.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CBaseObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CBaseObject.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CBasePlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CBasePlayer.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CBasePlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CBasePlayer.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CBaseProjectile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CBaseProjectile.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CBaseProjectile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CBaseProjectile.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CBaseTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CBaseTrace.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CCaptureFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CCaptureFlag.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CCollisionProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CCollisionProperty.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CEconDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CEconDefinition.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CEconEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CEconEntity.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CEconWearable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CEconWearable.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CEntitySphereQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CEntitySphereQuery.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CGameTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CGameTrace.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CModel.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CMultiPlayerAnimState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CMultiPlayerAnimState.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CParticleProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CParticleProperty.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CPlayerResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CPlayerResource.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CPredictionCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CPredictionCopy.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CSniperDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CSniperDot.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CTFPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CTFPlayer.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CTFPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CTFPlayer.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CTFPlayerResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CTFPlayerResource.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CTFWeaponBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CTFWeaponBase.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CTFWeaponBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CTFWeaponBase.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/CUserCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/CUserCmd.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/IAchievementMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/IAchievementMgr.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/IClientEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/IClientEntity.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/IClientNetworkable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/IClientNetworkable.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/IClientRenderable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/IClientRenderable.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/IClientThinkable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/IClientThinkable.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/IClientUnknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/IClientUnknown.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/IHandleEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/IHandleEntity.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/IMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/IMaterial.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/IMaterialVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/IMaterialVar.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/INetChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/INetChannel.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/INetChannelInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/INetChannelInfo.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/INetMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/INetMessage.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/INetMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/INetMessage.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/INetworkMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/INetworkMessage.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/INetworkSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/INetworkSystem.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/ITexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/ITexture.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/KeyValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/KeyValues.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/KeyValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/KeyValues.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/MD5.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/MD5.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/NetChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/NetChannel.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/PlayerStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/PlayerStats.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Main/UtlVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Main/UtlVector.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/Activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/Activity.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/AnalogCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/AnalogCode.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/BSPFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/BSPFlags.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/BaseTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/BaseTypes.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/ButtonCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/ButtonCode.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/CGameEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/CGameEventListener.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/CInterpolatedVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/CInterpolatedVar.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/CRangeCheckedVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/CRangeCheckedVar.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/CViewSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/CViewSetup.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/ChecksumCRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/ChecksumCRC.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/ChecksumCRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/ChecksumCRC.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/ClientClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/ClientClass.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/CommonMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/CommonMacros.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/ConVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/ConVar.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/Cursor.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/Datamap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/Datamap.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/Deformations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/Deformations.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/IAppSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/IAppSystem.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/IClientMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/IClientMode.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/IColorCorrectionSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/IColorCorrectionSystem.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/IConVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/IConVar.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/IGameResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/IGameResources.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/IHTML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/IHTML.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/IImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/IImage.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/IMDLCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/IMDLCache.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/IMatchGroupDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/IMatchGroupDescription.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/IMaterialSystemHardwareConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/IMaterialSystemHardwareConfig.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/IPrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/IPrediction.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/IRefCounted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/IRefCounted.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/ISpatialPartition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/ISpatialPartition.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/ISurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/ISurface.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/IVguiMatInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/IVguiMatInfo.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/IVguiMatInfoVar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/IVguiMatInfoVar.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/ImageFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/ImageFormat.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/InputEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/InputEnums.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/KeyCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/KeyCode.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/LightDesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/LightDesc.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/LocalFlexController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/LocalFlexController.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/Modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/Modes.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/MouseCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/MouseCode.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/NetAdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/NetAdr.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/ServerClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/ServerClass.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/SmartPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/SmartPtr.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/String.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/Studio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/Studio.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/TextureGroupNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/TextureGroupNames.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/UtlIntrusiveList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/UtlIntrusiveList.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/UtlObjectReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/UtlObjectReference.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/VCollide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/VCollide.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/VGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/VGUI.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/VPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/VPlane.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/VTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/VTF.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/bitbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/bitbuf.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/bitbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/bitbuf.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/bitvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/bitvec.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/dt_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/dt_common.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/dt_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/dt_recv.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Misc/dt_send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Misc/dt_send.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/NullInterfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/NullInterfaces.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamAppList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamAppList.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamAppTicket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamAppTicket.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamApps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamApps.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamClient.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamController.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamDualSense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamDualSense.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamFriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamFriends.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamGameCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamGameCoordinator.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamGameServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamGameServer.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamGameServerStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamGameServerStats.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamHTMLSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamHTMLSurface.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamHTTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamHTTP.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamInput.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamInventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamInventory.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamMatchmaking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamMatchmaking.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamMusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamMusic.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamMusicRemote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamMusicRemote.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamNetworking.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamNetworkingMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamNetworkingMessages.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamNetworkingSockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamNetworkingSockets.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamNetworkingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamNetworkingUtils.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamPS3OverlayRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamPS3OverlayRenderer.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamParentalSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamParentalSettings.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamRemotePlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamRemotePlay.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamRemoteStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamRemoteStorage.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamScreenshots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamScreenshots.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamUGC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamUGC.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamUser.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamUserStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamUserStats.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamUtils.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/ISteamVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/ISteamVideo.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/MatchmakingTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/MatchmakingTypes.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/SteamClientPublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/SteamClientPublic.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/SteamEncryptedAppTicket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/SteamEncryptedAppTicket.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/SteamHTTPEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/SteamHTTPEnums.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/SteamNetworkingFakeIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/SteamNetworkingFakeIP.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/SteamNetworkingTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/SteamNetworkingTypes.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/SteamPS3Params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/SteamPS3Params.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/SteamTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/SteamTypes.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/SteamUniverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/SteamUniverse.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/Steam_API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/Steam_API.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/Steam_API.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/Steam_API.json -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/Steam_API_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/Steam_API_Common.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/Steam_API_Flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/Steam_API_Flat.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/Steam_API_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/Steam_API_Internal.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Steam/Steam_Gameserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Steam/Steam_Gameserver.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Definitions/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Definitions/Types.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Events/Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Events/Events.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Events/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Events/Events.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Globals.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Helpers/ConVars/ConVars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Helpers/ConVars/ConVars.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Helpers/ConVars/ConVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Helpers/ConVars/ConVars.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Helpers/Draw/Draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Helpers/Draw/Draw.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Helpers/Draw/Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Helpers/Draw/Draw.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Helpers/Entities/Entities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Helpers/Entities/Entities.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Helpers/Entities/Entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Helpers/Entities/Entities.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Helpers/Fonts/Fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Helpers/Fonts/Fonts.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Helpers/Fonts/Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Helpers/Fonts/Fonts.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Helpers/Particles/Particles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Helpers/Particles/Particles.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Helpers/TraceFilters/TraceFilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Helpers/TraceFilters/TraceFilters.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/Helpers/TraceFilters/TraceFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Helpers/TraceFilters/TraceFilters.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/SDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/SDK.cpp -------------------------------------------------------------------------------- /Amalgam/src/SDK/SDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/SDK.h -------------------------------------------------------------------------------- /Amalgam/src/SDK/Vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/SDK/Vars.h -------------------------------------------------------------------------------- /Amalgam/src/Utils/ExceptionHandler/ExceptionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/ExceptionHandler/ExceptionHandler.cpp -------------------------------------------------------------------------------- /Amalgam/src/Utils/ExceptionHandler/ExceptionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/ExceptionHandler/ExceptionHandler.h -------------------------------------------------------------------------------- /Amalgam/src/Utils/Hash/FNV1A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/Hash/FNV1A.h -------------------------------------------------------------------------------- /Amalgam/src/Utils/Hooks/Hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/Hooks/Hooks.cpp -------------------------------------------------------------------------------- /Amalgam/src/Utils/Hooks/Hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/Hooks/Hooks.h -------------------------------------------------------------------------------- /Amalgam/src/Utils/Interfaces/Interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/Interfaces/Interfaces.cpp -------------------------------------------------------------------------------- /Amalgam/src/Utils/Interfaces/Interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/Interfaces/Interfaces.h -------------------------------------------------------------------------------- /Amalgam/src/Utils/KeyHandler/KeyHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/KeyHandler/KeyHandler.cpp -------------------------------------------------------------------------------- /Amalgam/src/Utils/KeyHandler/KeyHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/KeyHandler/KeyHandler.h -------------------------------------------------------------------------------- /Amalgam/src/Utils/Macros/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/Macros/Macros.h -------------------------------------------------------------------------------- /Amalgam/src/Utils/Math/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/Math/Math.h -------------------------------------------------------------------------------- /Amalgam/src/Utils/Memory/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/Memory/Memory.cpp -------------------------------------------------------------------------------- /Amalgam/src/Utils/Memory/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/Memory/Memory.h -------------------------------------------------------------------------------- /Amalgam/src/Utils/NetVars/NetVars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/NetVars/NetVars.cpp -------------------------------------------------------------------------------- /Amalgam/src/Utils/NetVars/NetVars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/NetVars/NetVars.h -------------------------------------------------------------------------------- /Amalgam/src/Utils/Signatures/Signatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/Signatures/Signatures.cpp -------------------------------------------------------------------------------- /Amalgam/src/Utils/Signatures/Signatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/Signatures/Signatures.h -------------------------------------------------------------------------------- /Amalgam/src/Utils/Timer/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/Timer/Timer.cpp -------------------------------------------------------------------------------- /Amalgam/src/Utils/Timer/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/Amalgam/src/Utils/Timer/Timer.h -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rei-2/Amalgam/HEAD/README.md --------------------------------------------------------------------------------