├── .gitignore └── RyzeXTR ├── Core ├── DLLMain.cpp ├── Features │ ├── Changers │ │ ├── SkinChanger.cpp │ │ └── SkinChanger.h │ ├── Misc │ │ ├── Playerlist.h │ │ ├── Vizualizer.cpp │ │ ├── Vizualizer.h │ │ ├── enginepred.cpp │ │ ├── enginepred.h │ │ ├── misc.cpp │ │ ├── misc.h │ │ ├── serversounds.cpp │ │ └── serversounds.h │ ├── Networking │ │ ├── networking.cpp │ │ └── networking.h │ ├── Rage │ │ ├── Animations │ │ │ ├── AntiAimCorrection.cpp │ │ │ ├── EnemyAnimations.cpp │ │ │ ├── EnemyAnimations.h │ │ │ ├── Lagcompensation.cpp │ │ │ ├── Lagcompensation.h │ │ │ ├── LocalAnimation.cpp │ │ │ └── LocalAnimation.h │ │ ├── aimbot.cpp │ │ ├── aimbot.h │ │ ├── antiaim.cpp │ │ ├── antiaim.h │ │ ├── autowall.cpp │ │ ├── autowall.h │ │ ├── exploits.cpp │ │ └── exploits.h │ └── Visuals │ │ ├── ESP.cpp │ │ ├── ESP.h │ │ ├── GrenadePredict.cpp │ │ ├── GrenadePredict.h │ │ ├── chams.cpp │ │ ├── chams.h │ │ └── drawlist.h ├── Hooks │ ├── Hooked │ │ ├── Animation │ │ │ ├── hkBaseInterpolatePart1.cpp │ │ │ ├── hkBuildTransformation.cpp │ │ │ ├── hkCalculateView.cpp │ │ │ ├── hkCheckForSequenceChange.cpp │ │ │ ├── hkClampBonesInBBox.cpp │ │ │ ├── hkDoExtraBoneProcessing.cpp │ │ │ ├── hkDoProceduralFootPlant.cpp │ │ │ ├── hkEstimateAbsVelocity.cpp │ │ │ ├── hkInterpolateServerEntites.cpp │ │ │ ├── hkIsFollowingEntity.cpp │ │ │ ├── hkIsHltv.cpp │ │ │ ├── hkModifyEyePosition.cpp │ │ │ ├── hkProcessInterpolatedList.cpp │ │ │ ├── hkSetUpMovement.cpp │ │ │ ├── hkSetupAliveLoop.cpp │ │ │ ├── hkSetupBones.cpp │ │ │ ├── hkShouldSkipAnimationFrame.cpp │ │ │ ├── hkStandardBlendingRules.cpp │ │ │ ├── hkUpdateAnimationState.cpp │ │ │ └── hkUpdateClientSideAnimations.cpp │ │ ├── ImGui │ │ │ └── ImGuiHooks.cpp │ │ ├── VerifyReturnAddress.cpp │ │ ├── hkAllocKeyValuesMemory.cpp │ │ ├── hkClMove.cpp │ │ ├── hkCreateMoveProxy.cpp │ │ ├── hkDoPostScreenEffects.cpp │ │ ├── hkDrawModel.cpp │ │ ├── hkFireGameEvent.cpp │ │ ├── hkFrameStageNotify.cpp │ │ ├── hkGetAlphaModulation.cpp │ │ ├── hkGetColorModulation.cpp │ │ ├── hkGetViewModelFov.cpp │ │ ├── hkINetchannelHandler.cpp │ │ ├── hkInPrediction.cpp │ │ ├── hkIsDepthOfFieldEnabled.cpp │ │ ├── hkLevelShutDownClient.cpp │ │ ├── hkListLeavesInBox.cpp │ │ ├── hkLockCursor.cpp │ │ ├── hkNetChannel.cpp │ │ ├── hkOverrideView.cpp │ │ ├── hkPaintTraverse.cpp │ │ ├── hkPhysicsSimulate.cpp │ │ ├── hkProcessTempEntities.cpp │ │ ├── hkRenderView.cpp │ │ ├── hkRunCommand.cpp │ │ ├── hkSetText.cpp │ │ ├── hkShouldDrawViewmodel.cpp │ │ ├── hkTrayRace.cpp │ │ └── hkWriteUserCmdDeltaToBuffer.cpp │ ├── Proxies │ │ ├── ProxyHooks.cpp │ │ └── ProxyHooks.h │ ├── hooks.cpp │ └── hooks.h ├── Interface │ ├── Classes │ │ ├── CCSGameRulesProxy.h │ │ ├── CClientModeShared.h │ │ ├── CClientState.h │ │ ├── CConvar.cpp │ │ ├── CConvar.h │ │ ├── CGlobalVarsBase.h │ │ ├── CInput.h │ │ ├── CKeyValues.cpp │ │ ├── CKeyValues.h │ │ ├── CKeyValuesSystem.h │ │ ├── CModelInfo.h │ │ ├── CMsg.h │ │ ├── CStudio.h │ │ └── CTexture.h │ ├── Interfaces │ │ ├── CLocalize.h │ │ ├── CNetworkStringTableContainer.h │ │ ├── IBaseClientDLL.h │ │ ├── IClientEntityList.h │ │ ├── IClientLeafSystem.h │ │ ├── IClientMode.h │ │ ├── IEngineSoundClient.h │ │ ├── IEngineTrace.h │ │ ├── IEngineVGui.h │ │ ├── IGameEventManager.h │ │ ├── IGlowObjectManager.h │ │ ├── IInputSystem.h │ │ ├── IItemSystem.h │ │ ├── IMatRenderContext.h │ │ ├── IMaterial.h │ │ ├── IMaterialSystem.h │ │ ├── IMdlCache.h │ │ ├── IPanel.h │ │ ├── IPrediction.h │ │ ├── IStudioRender.h │ │ ├── ISurface.h │ │ ├── ISurfaceData.h │ │ ├── IVDebugOverlay.h │ │ ├── IVEngineClient.h │ │ ├── IVEngineEffects.h │ │ ├── IVModelRender.h │ │ ├── IViewRenderBeams.h │ │ ├── IWeaponSystem.h │ │ ├── MemAlloc.h │ │ ├── entityListener.cpp │ │ └── entityListener.h │ ├── interfaces.cpp │ └── interfaces.h ├── Lua │ ├── Lua.cpp │ └── Lua.h ├── SDK │ ├── Animstate.h │ ├── CRC32.cpp │ ├── CRC32.h │ ├── CUserCmd.h │ ├── DataTyes │ │ ├── BitVec.h │ │ ├── Color.h │ │ ├── Matrix.h │ │ ├── UtlMemory.h │ │ ├── UtlVector.h │ │ └── Vector.h │ ├── Draw.cpp │ ├── Draw.h │ ├── Entity.cpp │ ├── Entity.h │ ├── Enums.h │ ├── InputSystem.cpp │ ├── InputSystem.h │ ├── Memory.cpp │ ├── Memory.h │ ├── Menu │ │ ├── config.cpp │ │ ├── config.h │ │ ├── fontBytes.h │ │ ├── gui.cpp │ │ ├── gui.h │ │ └── menuRender.cpp │ ├── NetVar │ │ ├── Netvar.cpp │ │ ├── Netvar.h │ │ ├── datatable.h │ │ └── fnv.h │ ├── RayTracer rebuilt │ │ ├── CRayTrace.cpp │ │ └── CRayTrace.h │ ├── WavParser.cpp │ ├── WavParser.h │ ├── X86RetSpoof.h │ ├── crt.h │ ├── datamap.h │ ├── math.cpp │ ├── math.h │ ├── pe.h │ └── win.h ├── globals.h ├── hungarians.h ├── memeSounds.h ├── utilities.h └── xorstr.h ├── Dependecies ├── BASS │ ├── API.h │ ├── bass.h │ ├── dll.cpp │ ├── dll.h │ ├── dll_image.cpp │ ├── random.h │ └── string_obfuscation.h ├── ImGui │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui_demo.cpp │ ├── 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_tables.cpp │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── Minhook │ ├── buffer.c │ ├── buffer.h │ ├── detour.hpp │ ├── hde │ │ ├── hde32.c │ │ ├── hde32.h │ │ ├── hde64.c │ │ ├── hde64.h │ │ ├── pstdint.h │ │ ├── table32.h │ │ └── table64.h │ ├── hook.c │ ├── minhook.h │ ├── trampoline.c │ └── trampoline.h ├── freetype │ ├── include │ │ ├── freetype │ │ │ ├── config │ │ │ │ ├── ftconfig.h │ │ │ │ ├── ftheader.h │ │ │ │ ├── ftmodule.h │ │ │ │ ├── ftoption.h │ │ │ │ └── ftstdlib.h │ │ │ ├── freetype.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 │ │ │ ├── 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 │ │ │ │ ├── ftcalc.h │ │ │ │ ├── ftdebug.h │ │ │ │ ├── ftdrv.h │ │ │ │ ├── ftgloadr.h │ │ │ │ ├── fthash.h │ │ │ │ ├── ftmemory.h │ │ │ │ ├── ftobjs.h │ │ │ │ ├── ftpsprop.h │ │ │ │ ├── ftrfork.h │ │ │ │ ├── ftserv.h │ │ │ │ ├── ftstream.h │ │ │ │ ├── fttrace.h │ │ │ │ ├── ftvalid.h │ │ │ │ ├── internal.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 │ │ │ │ ├── t1types.h │ │ │ │ ├── tttypes.h │ │ │ │ └── wofftypes.h │ │ │ ├── t1tables.h │ │ │ ├── ttnameid.h │ │ │ ├── tttables.h │ │ │ └── tttags.h │ │ └── ft2build.h │ └── win32 │ │ ├── freetype.lib │ │ └── freetype_debug.lib └── lua │ └── embedding │ ├── lauxlib.h │ ├── lua.h │ ├── lua.hpp │ ├── lua51.dll │ ├── lua51.lib │ ├── luaconf.h │ ├── luajit.h │ ├── luajit.lib │ ├── lualib.h │ └── sol │ ├── config.hpp │ ├── forward.hpp │ └── sol.hpp ├── RyzeXTR.sln ├── RyzeXTR.vcxproj └── RyzeXTR.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/.gitignore -------------------------------------------------------------------------------- /RyzeXTR/Core/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/DLLMain.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Changers/SkinChanger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Changers/SkinChanger.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Changers/SkinChanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Changers/SkinChanger.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Misc/Playerlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Misc/Playerlist.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Misc/Vizualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Misc/Vizualizer.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Misc/Vizualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Misc/Vizualizer.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Misc/enginepred.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Misc/enginepred.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Misc/enginepred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Misc/enginepred.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Misc/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Misc/misc.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Misc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Misc/misc.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Misc/serversounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Misc/serversounds.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Misc/serversounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Misc/serversounds.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Networking/networking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Networking/networking.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Networking/networking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Networking/networking.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Rage/Animations/AntiAimCorrection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Rage/Animations/AntiAimCorrection.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Rage/Animations/EnemyAnimations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Rage/Animations/EnemyAnimations.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Rage/Animations/EnemyAnimations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Rage/Animations/EnemyAnimations.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Rage/Animations/Lagcompensation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Rage/Animations/Lagcompensation.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Rage/Animations/Lagcompensation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Rage/Animations/Lagcompensation.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Rage/Animations/LocalAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Rage/Animations/LocalAnimation.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Rage/Animations/LocalAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Rage/Animations/LocalAnimation.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Rage/aimbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Rage/aimbot.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Rage/aimbot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Rage/aimbot.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Rage/antiaim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Rage/antiaim.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Rage/antiaim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Rage/antiaim.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Rage/autowall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Rage/autowall.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Rage/autowall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Rage/autowall.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Rage/exploits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Rage/exploits.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Rage/exploits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Rage/exploits.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Visuals/ESP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Visuals/ESP.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Visuals/ESP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Visuals/ESP.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Visuals/GrenadePredict.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Visuals/GrenadePredict.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Visuals/GrenadePredict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Visuals/GrenadePredict.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Visuals/chams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Visuals/chams.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Visuals/chams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Visuals/chams.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Features/Visuals/drawlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Features/Visuals/drawlist.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkBaseInterpolatePart1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkBaseInterpolatePart1.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkBuildTransformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkBuildTransformation.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkCalculateView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkCalculateView.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkCheckForSequenceChange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkCheckForSequenceChange.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkClampBonesInBBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkClampBonesInBBox.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkDoExtraBoneProcessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkDoExtraBoneProcessing.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkDoProceduralFootPlant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkDoProceduralFootPlant.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkEstimateAbsVelocity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkEstimateAbsVelocity.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkInterpolateServerEntites.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkInterpolateServerEntites.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkIsFollowingEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkIsFollowingEntity.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkIsHltv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkIsHltv.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkModifyEyePosition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkModifyEyePosition.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkProcessInterpolatedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkProcessInterpolatedList.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkSetUpMovement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkSetUpMovement.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkSetupAliveLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkSetupAliveLoop.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkSetupBones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkSetupBones.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkShouldSkipAnimationFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkShouldSkipAnimationFrame.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkStandardBlendingRules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkStandardBlendingRules.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkUpdateAnimationState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkUpdateAnimationState.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/Animation/hkUpdateClientSideAnimations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/Animation/hkUpdateClientSideAnimations.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/ImGui/ImGuiHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/ImGui/ImGuiHooks.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/VerifyReturnAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/VerifyReturnAddress.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkAllocKeyValuesMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkAllocKeyValuesMemory.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkClMove.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkClMove.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkCreateMoveProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkCreateMoveProxy.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkDoPostScreenEffects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkDoPostScreenEffects.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkDrawModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkDrawModel.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkFireGameEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkFireGameEvent.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkFrameStageNotify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkFrameStageNotify.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkGetAlphaModulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkGetAlphaModulation.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkGetColorModulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkGetColorModulation.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkGetViewModelFov.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkGetViewModelFov.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkINetchannelHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkINetchannelHandler.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkInPrediction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkInPrediction.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkIsDepthOfFieldEnabled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkIsDepthOfFieldEnabled.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkLevelShutDownClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkLevelShutDownClient.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkListLeavesInBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkListLeavesInBox.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkLockCursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkLockCursor.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkNetChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkNetChannel.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkOverrideView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkOverrideView.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkPaintTraverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkPaintTraverse.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkPhysicsSimulate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkPhysicsSimulate.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkProcessTempEntities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkProcessTempEntities.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkRenderView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkRenderView.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkRunCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkRunCommand.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkSetText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkSetText.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkShouldDrawViewmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkShouldDrawViewmodel.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkTrayRace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkTrayRace.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Hooked/hkWriteUserCmdDeltaToBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Hooked/hkWriteUserCmdDeltaToBuffer.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Proxies/ProxyHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Proxies/ProxyHooks.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/Proxies/ProxyHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/Proxies/ProxyHooks.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/hooks.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Hooks/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Hooks/hooks.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Classes/CCSGameRulesProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Classes/CCSGameRulesProxy.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Classes/CClientModeShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Classes/CClientModeShared.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Classes/CClientState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Classes/CClientState.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Classes/CConvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Classes/CConvar.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Classes/CConvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Classes/CConvar.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Classes/CGlobalVarsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Classes/CGlobalVarsBase.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Classes/CInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Classes/CInput.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Classes/CKeyValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Classes/CKeyValues.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Classes/CKeyValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Classes/CKeyValues.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Classes/CKeyValuesSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Classes/CKeyValuesSystem.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Classes/CModelInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Classes/CModelInfo.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Classes/CMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Classes/CMsg.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Classes/CStudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Classes/CStudio.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Classes/CTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Classes/CTexture.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/CLocalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/CLocalize.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/CNetworkStringTableContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/CNetworkStringTableContainer.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IBaseClientDLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IBaseClientDLL.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IClientEntityList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IClientEntityList.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IClientLeafSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IClientLeafSystem.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IClientMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IClientMode.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IEngineSoundClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IEngineSoundClient.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IEngineTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IEngineTrace.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IEngineVGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IEngineVGui.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IGameEventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IGameEventManager.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IGlowObjectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IGlowObjectManager.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IInputSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IInputSystem.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IItemSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IItemSystem.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IMatRenderContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IMatRenderContext.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IMaterial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IMaterial.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IMaterialSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IMaterialSystem.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IMdlCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IMdlCache.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IPanel.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IPrediction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IPrediction.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IStudioRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IStudioRender.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/ISurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/ISurface.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/ISurfaceData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/ISurfaceData.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IVDebugOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IVDebugOverlay.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IVEngineClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IVEngineClient.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IVEngineEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IVEngineEffects.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IVModelRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IVModelRender.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IViewRenderBeams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IViewRenderBeams.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/IWeaponSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/IWeaponSystem.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/MemAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/MemAlloc.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/entityListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/entityListener.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/Interfaces/entityListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/Interfaces/entityListener.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/interfaces.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Interface/interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Interface/interfaces.h -------------------------------------------------------------------------------- /RyzeXTR/Core/Lua/Lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Lua/Lua.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/Lua/Lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/Lua/Lua.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/Animstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/Animstate.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/CRC32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/CRC32.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/CRC32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/CRC32.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/CUserCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/CUserCmd.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/DataTyes/BitVec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/DataTyes/BitVec.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/DataTyes/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/DataTyes/Color.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/DataTyes/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/DataTyes/Matrix.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/DataTyes/UtlMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/DataTyes/UtlMemory.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/DataTyes/UtlVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/DataTyes/UtlVector.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/DataTyes/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/DataTyes/Vector.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/Draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/Draw.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/Draw.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/Entity.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/Entity.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/Enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/Enums.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/InputSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/InputSystem.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/InputSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/InputSystem.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/Memory.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/Memory.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/Menu/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/Menu/config.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/Menu/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/Menu/config.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/Menu/fontBytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/Menu/fontBytes.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/Menu/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/Menu/gui.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/Menu/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/Menu/gui.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/Menu/menuRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/Menu/menuRender.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/NetVar/Netvar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/NetVar/Netvar.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/NetVar/Netvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/NetVar/Netvar.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/NetVar/datatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/NetVar/datatable.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/NetVar/fnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/NetVar/fnv.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/RayTracer rebuilt/CRayTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/RayTracer rebuilt/CRayTrace.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/RayTracer rebuilt/CRayTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/RayTracer rebuilt/CRayTrace.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/WavParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/WavParser.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/WavParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/WavParser.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/X86RetSpoof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/X86RetSpoof.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/crt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/crt.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/datamap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/datamap.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/math.cpp -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/math.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/pe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/pe.h -------------------------------------------------------------------------------- /RyzeXTR/Core/SDK/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/SDK/win.h -------------------------------------------------------------------------------- /RyzeXTR/Core/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/globals.h -------------------------------------------------------------------------------- /RyzeXTR/Core/hungarians.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/hungarians.h -------------------------------------------------------------------------------- /RyzeXTR/Core/memeSounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/memeSounds.h -------------------------------------------------------------------------------- /RyzeXTR/Core/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/utilities.h -------------------------------------------------------------------------------- /RyzeXTR/Core/xorstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Core/xorstr.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/BASS/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/BASS/API.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/BASS/bass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/BASS/bass.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/BASS/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/BASS/dll.cpp -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/BASS/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/BASS/dll.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/BASS/dll_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/BASS/dll_image.cpp -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/BASS/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/BASS/random.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/BASS/string_obfuscation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/BASS/string_obfuscation.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imconfig.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imgui.cpp -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imgui.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imgui_demo.cpp -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imgui_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imgui_freetype.cpp -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imgui_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imgui_freetype.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imgui_impl_win32.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imgui_tables.cpp -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/Minhook/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/Minhook/buffer.c -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/Minhook/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/Minhook/buffer.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/Minhook/detour.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/Minhook/detour.hpp -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/Minhook/hde/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/Minhook/hde/hde32.c -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/Minhook/hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/Minhook/hde/hde32.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/Minhook/hde/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/Minhook/hde/hde64.c -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/Minhook/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/Minhook/hde/hde64.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/Minhook/hde/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/Minhook/hde/pstdint.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/Minhook/hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/Minhook/hde/table32.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/Minhook/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/Minhook/hde/table64.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/Minhook/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/Minhook/hook.c -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/Minhook/minhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/Minhook/minhook.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/Minhook/trampoline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/Minhook/trampoline.c -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/Minhook/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/Minhook/trampoline.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/config/ftconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/config/ftconfig.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/config/ftheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/config/ftheader.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/config/ftmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/config/ftmodule.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/config/ftoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/config/ftoption.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/config/ftstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/config/ftstdlib.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/freetype.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftadvanc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftadvanc.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftbbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftbbox.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftbdf.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftbitmap.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftbzip2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftbzip2.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftcache.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftchapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftchapters.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftcid.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftcolor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftcolor.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftdriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftdriver.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/fterrdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/fterrdef.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/fterrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/fterrors.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftfntfmt.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftgasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftgasp.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftglyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftglyph.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftgxval.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftgzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftgzip.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftimage.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftincrem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftincrem.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftlcdfil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftlcdfil.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftlist.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftlzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftlzw.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftmac.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftmm.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftmodapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftmodapi.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftmoderr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftmoderr.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftotval.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftoutln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftoutln.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftparams.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftpfr.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftrender.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftsizes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftsizes.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftsnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftsnames.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftstroke.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftsynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftsynth.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftsystem.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/fttrigon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/fttrigon.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/fttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/fttypes.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ftwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ftwinfnt.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/autohint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/autohint.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/cffotypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/cffotypes.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/cfftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/cfftypes.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/ftcalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/ftcalc.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/ftdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/ftdebug.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/ftdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/ftdrv.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/ftgloadr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/ftgloadr.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/fthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/fthash.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/ftmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/ftmemory.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/ftobjs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/ftobjs.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/ftpsprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/ftpsprop.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/ftrfork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/ftrfork.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/ftserv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/ftserv.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/ftstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/ftstream.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/fttrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/fttrace.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/ftvalid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/ftvalid.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/internal.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/psaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/psaux.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/pshints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/pshints.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svbdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svbdf.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svcfftl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svcfftl.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svcid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svcid.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svfntfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svfntfmt.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svgldict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svgldict.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svgxval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svgxval.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svkern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svkern.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svmetric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svmetric.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svmm.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svotval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svotval.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svpfr.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svpostnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svpostnm.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svprop.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svpscmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svpscmap.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svpsinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svpsinfo.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svsfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svsfnt.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svttcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svttcmap.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svtteng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svtteng.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svttglyf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svttglyf.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svwinfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/services/svwinfnt.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/sfnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/sfnt.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/t1types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/t1types.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/tttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/tttypes.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/internal/wofftypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/internal/wofftypes.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/t1tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/t1tables.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/ttnameid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/ttnameid.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/tttables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/tttables.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/freetype/tttags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/freetype/tttags.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/include/ft2build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/include/ft2build.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/win32/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/win32/freetype.lib -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/freetype/win32/freetype_debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/freetype/win32/freetype_debug.lib -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/lua/embedding/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/lua/embedding/lauxlib.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/lua/embedding/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/lua/embedding/lua.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/lua/embedding/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/lua/embedding/lua.hpp -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/lua/embedding/lua51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/lua/embedding/lua51.dll -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/lua/embedding/lua51.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/lua/embedding/lua51.lib -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/lua/embedding/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/lua/embedding/luaconf.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/lua/embedding/luajit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/lua/embedding/luajit.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/lua/embedding/luajit.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/lua/embedding/luajit.lib -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/lua/embedding/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/lua/embedding/lualib.h -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/lua/embedding/sol/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/lua/embedding/sol/config.hpp -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/lua/embedding/sol/forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/lua/embedding/sol/forward.hpp -------------------------------------------------------------------------------- /RyzeXTR/Dependecies/lua/embedding/sol/sol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/Dependecies/lua/embedding/sol/sol.hpp -------------------------------------------------------------------------------- /RyzeXTR/RyzeXTR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/RyzeXTR.sln -------------------------------------------------------------------------------- /RyzeXTR/RyzeXTR.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/RyzeXTR.vcxproj -------------------------------------------------------------------------------- /RyzeXTR/RyzeXTR.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cride9/RyzeX-Source/HEAD/RyzeXTR/RyzeXTR.vcxproj.filters --------------------------------------------------------------------------------