├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── main.yml │ └── release_tag │ └── action.yml ├── .gitignore ├── .gitmodules ├── 7za.exe ├── appveyor.yml ├── license ├── premake5.bat ├── premake5.exe ├── premake5.lua ├── readme.md ├── release.bat └── source ├── Driv3r.XboxRainDroplets.cpp ├── DriverParallelLines.XboxRainDroplets.cpp ├── GTA3.XboxRainDroplets.cpp ├── GTA3DE.XboxRainDroplets.cpp ├── GTAIV.XboxRainDroplets.cpp ├── GTASA.XboxRainDroplets.cpp ├── GTASADE.XboxRainDroplets.cpp ├── GTAVCDE.XboxRainDroplets.cpp ├── Mafia.XboxRainDroplets.cpp ├── Manhunt.XboxRainDroplets.cpp ├── MaxPayne.XboxRainDroplets.cpp ├── MaxPayne2.XboxRainDroplets.cpp ├── MaxPayne3.XboxRainDroplets.cpp ├── NFSCarbon.XboxRainDroplets.cpp ├── NFSMostWanted.XboxRainDroplets.cpp ├── NFSUnderground2.XboxRainDroplets.cpp ├── PCSX2F.XboxRainDroplets.cpp ├── PPSSPP.XboxRainDroplets.cpp ├── Scarface.XboxRainDroplets.cpp ├── SplinterCell.XboxRainDroplets.cpp ├── SplinterCellBlacklist.XboxRainDroplets.cpp ├── SplinterCellChaosTheory.XboxRainDroplets.cpp ├── SplinterCellDoubleAgent.XboxRainDroplets.cpp ├── SplinterCellPandoraTomorrow.XboxRainDroplets.cpp ├── XboxRainDropletsWrapper.cpp ├── dropmask.h ├── dxsdk ├── d3dx9.h ├── d3dx9anim.h ├── d3dx9core.h ├── d3dx9effect.h ├── d3dx9math.h ├── d3dx9math.inl ├── d3dx9mesh.h ├── d3dx9shader.h ├── d3dx9shape.h ├── d3dx9tex.h ├── d3dx9xof.h ├── dx8 │ ├── d3d.h │ ├── d3d8.h │ ├── d3d8.lib │ ├── d3d8caps.h │ ├── d3d8types.h │ ├── d3dapp.cpp │ ├── d3dapp.h │ ├── d3dcaps.h │ ├── d3dfont.cpp │ ├── d3dfont.h │ ├── d3dres.h │ ├── d3drm.h │ ├── d3drmdef.h │ ├── d3drmobj.h │ ├── d3drmwin.h │ ├── d3dtypes.h │ ├── d3dutil.h │ ├── d3dvec.inl │ ├── d3dx.h │ ├── d3dx8.h │ ├── d3dx8.lib │ ├── d3dx8core.h │ ├── d3dx8d.lib │ ├── d3dx8dt.lib │ ├── d3dx8effect.h │ ├── d3dx8math.h │ ├── d3dx8math.inl │ ├── d3dx8mesh.h │ ├── d3dx8shape.h │ ├── d3dx8tex.h │ ├── d3dxcore.h │ ├── d3dxerr.h │ ├── d3dxmath.h │ ├── d3dxmath.inl │ ├── d3dxshapes.h │ ├── d3dxsprite.h │ ├── ddutil.cpp │ ├── ddutil.h │ ├── dxfile.h │ ├── dxutil.cpp │ └── dxutil.h └── lib │ ├── x64 │ ├── D3DCompiler_43.dll │ ├── D3DX9_43.dll │ ├── d3dx9.lib │ └── fxc.exe │ └── x86 │ ├── D3DCompiler_43.dll │ ├── D3DX9_43.dll │ ├── d3dx9.lib │ └── fxc.exe ├── includes ├── FileWatch.hpp ├── ModuleList.hpp └── callbacks.h ├── resources ├── Dropmask.rc ├── VersionInfo.h ├── Versioninfo.rc ├── blurPS.cso ├── blurVS.cso ├── default.ini ├── drop1.png ├── drop2.png ├── drop3.png ├── drop4.png ├── dropmask.png ├── inis │ ├── Driv3r.XboxRainDroplets.ini │ ├── DriverParallelLines.XboxRainDroplets.ini │ ├── GTA3DE.XboxRainDroplets.ini │ ├── GTAIV.XboxRainDroplets.ini │ ├── GTASADE.XboxRainDroplets.ini │ ├── GTAVCDE.XboxRainDroplets.ini │ ├── Mafia.XboxRainDroplets.ini │ ├── Manhunt.XboxRainDroplets.ini │ ├── MaxPayne.XboxRainDroplets.ini │ ├── MaxPayne2.XboxRainDroplets.ini │ ├── MaxPayne3.XboxRainDroplets.ini │ ├── NFSCarbon.XboxRainDroplets.ini │ ├── NFSMostWanted.XboxRainDroplets.ini │ ├── NFSUnderground2.XboxRainDroplets.ini │ ├── PCSX2F.XboxRainDroplets64.ini │ ├── PPSSPP.XboxRainDroplets.ini │ ├── PPSSPP.XboxRainDroplets64.ini │ ├── Scarface.XboxRainDroplets.ini │ ├── SplinterCell.XboxRainDroplets.ini │ ├── SplinterCellBlacklist.XboxRainDroplets.ini │ ├── SplinterCellChaosTheory.XboxRainDroplets.ini │ ├── SplinterCellDoubleAgent.XboxRainDroplets.ini │ ├── SplinterCellPandoraTomorrow.XboxRainDroplets.ini │ ├── XboxRainDropletsWrapper.ini │ └── XboxRainDropletsWrapper64.ini ├── shaders │ ├── ps │ │ └── blurPS.hlsl │ └── vs │ │ └── blurVS.hlsl ├── snowdrop1.png ├── snowdrop2.png ├── snowdrop3.png ├── snowdrop4.png └── snowdropmask.png ├── snow.h ├── xrd.h └── xrd11.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release_tag/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/.github/workflows/release_tag/action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/.gitmodules -------------------------------------------------------------------------------- /7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/7za.exe -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/appveyor.yml -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/license -------------------------------------------------------------------------------- /premake5.bat: -------------------------------------------------------------------------------- 1 | premake5 vs2022 -------------------------------------------------------------------------------- /premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/premake5.exe -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/premake5.lua -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/readme.md -------------------------------------------------------------------------------- /release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/release.bat -------------------------------------------------------------------------------- /source/Driv3r.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/Driv3r.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/DriverParallelLines.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/DriverParallelLines.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/GTA3.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/GTA3.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/GTA3DE.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/GTA3DE.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/GTAIV.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/GTAIV.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/GTASA.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/GTASA.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/GTASADE.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/GTASADE.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/GTAVCDE.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/GTAVCDE.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/Mafia.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/Mafia.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/Manhunt.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/Manhunt.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/MaxPayne.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/MaxPayne.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/MaxPayne2.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/MaxPayne2.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/MaxPayne3.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/MaxPayne3.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/NFSCarbon.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/NFSCarbon.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/NFSMostWanted.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/NFSMostWanted.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/NFSUnderground2.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/NFSUnderground2.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/PCSX2F.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/PCSX2F.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/PPSSPP.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/PPSSPP.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/Scarface.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/Scarface.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/SplinterCell.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/SplinterCell.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/SplinterCellBlacklist.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/SplinterCellBlacklist.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/SplinterCellChaosTheory.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/SplinterCellChaosTheory.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/SplinterCellDoubleAgent.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/SplinterCellDoubleAgent.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/SplinterCellPandoraTomorrow.XboxRainDroplets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/SplinterCellPandoraTomorrow.XboxRainDroplets.cpp -------------------------------------------------------------------------------- /source/XboxRainDropletsWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/XboxRainDropletsWrapper.cpp -------------------------------------------------------------------------------- /source/dropmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dropmask.h -------------------------------------------------------------------------------- /source/dxsdk/d3dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/d3dx9.h -------------------------------------------------------------------------------- /source/dxsdk/d3dx9anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/d3dx9anim.h -------------------------------------------------------------------------------- /source/dxsdk/d3dx9core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/d3dx9core.h -------------------------------------------------------------------------------- /source/dxsdk/d3dx9effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/d3dx9effect.h -------------------------------------------------------------------------------- /source/dxsdk/d3dx9math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/d3dx9math.h -------------------------------------------------------------------------------- /source/dxsdk/d3dx9math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/d3dx9math.inl -------------------------------------------------------------------------------- /source/dxsdk/d3dx9mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/d3dx9mesh.h -------------------------------------------------------------------------------- /source/dxsdk/d3dx9shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/d3dx9shader.h -------------------------------------------------------------------------------- /source/dxsdk/d3dx9shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/d3dx9shape.h -------------------------------------------------------------------------------- /source/dxsdk/d3dx9tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/d3dx9tex.h -------------------------------------------------------------------------------- /source/dxsdk/d3dx9xof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/d3dx9xof.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3d.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3d8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3d8.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3d8.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3d8.lib -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3d8caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3d8caps.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3d8types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3d8types.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dapp.cpp -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dapp.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dcaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dcaps.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dfont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dfont.cpp -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dfont.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dres.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3drm.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3drmdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3drmdef.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3drmobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3drmobj.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3drmwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3drmwin.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dtypes.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dutil.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dvec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dvec.inl -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dx.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dx8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dx8.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dx8.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dx8.lib -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dx8core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dx8core.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dx8d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dx8d.lib -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dx8dt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dx8dt.lib -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dx8effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dx8effect.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dx8math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dx8math.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dx8math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dx8math.inl -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dx8mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dx8mesh.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dx8shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dx8shape.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dx8tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dx8tex.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dxcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dxcore.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dxerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dxerr.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dxmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dxmath.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dxmath.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dxmath.inl -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dxshapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dxshapes.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/d3dxsprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/d3dxsprite.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/ddutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/ddutil.cpp -------------------------------------------------------------------------------- /source/dxsdk/dx8/ddutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/ddutil.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/dxfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/dxfile.h -------------------------------------------------------------------------------- /source/dxsdk/dx8/dxutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/dxutil.cpp -------------------------------------------------------------------------------- /source/dxsdk/dx8/dxutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/dx8/dxutil.h -------------------------------------------------------------------------------- /source/dxsdk/lib/x64/D3DCompiler_43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/lib/x64/D3DCompiler_43.dll -------------------------------------------------------------------------------- /source/dxsdk/lib/x64/D3DX9_43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/lib/x64/D3DX9_43.dll -------------------------------------------------------------------------------- /source/dxsdk/lib/x64/d3dx9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/lib/x64/d3dx9.lib -------------------------------------------------------------------------------- /source/dxsdk/lib/x64/fxc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/lib/x64/fxc.exe -------------------------------------------------------------------------------- /source/dxsdk/lib/x86/D3DCompiler_43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/lib/x86/D3DCompiler_43.dll -------------------------------------------------------------------------------- /source/dxsdk/lib/x86/D3DX9_43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/lib/x86/D3DX9_43.dll -------------------------------------------------------------------------------- /source/dxsdk/lib/x86/d3dx9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/lib/x86/d3dx9.lib -------------------------------------------------------------------------------- /source/dxsdk/lib/x86/fxc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/dxsdk/lib/x86/fxc.exe -------------------------------------------------------------------------------- /source/includes/FileWatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/includes/FileWatch.hpp -------------------------------------------------------------------------------- /source/includes/ModuleList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/includes/ModuleList.hpp -------------------------------------------------------------------------------- /source/includes/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/includes/callbacks.h -------------------------------------------------------------------------------- /source/resources/Dropmask.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/Dropmask.rc -------------------------------------------------------------------------------- /source/resources/VersionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/VersionInfo.h -------------------------------------------------------------------------------- /source/resources/Versioninfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/Versioninfo.rc -------------------------------------------------------------------------------- /source/resources/blurPS.cso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/blurPS.cso -------------------------------------------------------------------------------- /source/resources/blurVS.cso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/blurVS.cso -------------------------------------------------------------------------------- /source/resources/default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/default.ini -------------------------------------------------------------------------------- /source/resources/drop1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/drop1.png -------------------------------------------------------------------------------- /source/resources/drop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/drop2.png -------------------------------------------------------------------------------- /source/resources/drop3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/drop3.png -------------------------------------------------------------------------------- /source/resources/drop4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/drop4.png -------------------------------------------------------------------------------- /source/resources/dropmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/dropmask.png -------------------------------------------------------------------------------- /source/resources/inis/Driv3r.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/Driv3r.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/DriverParallelLines.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/DriverParallelLines.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/GTA3DE.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/GTA3DE.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/GTAIV.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/GTAIV.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/GTASADE.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/GTASADE.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/GTAVCDE.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/GTAVCDE.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/Mafia.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/Mafia.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/Manhunt.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/Manhunt.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/MaxPayne.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/MaxPayne.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/MaxPayne2.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/MaxPayne2.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/MaxPayne3.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/MaxPayne3.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/NFSCarbon.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/NFSCarbon.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/NFSMostWanted.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/NFSMostWanted.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/NFSUnderground2.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/NFSUnderground2.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/PCSX2F.XboxRainDroplets64.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/PCSX2F.XboxRainDroplets64.ini -------------------------------------------------------------------------------- /source/resources/inis/PPSSPP.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/PPSSPP.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/PPSSPP.XboxRainDroplets64.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/PPSSPP.XboxRainDroplets64.ini -------------------------------------------------------------------------------- /source/resources/inis/Scarface.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/Scarface.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/SplinterCell.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/SplinterCell.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/SplinterCellBlacklist.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/SplinterCellBlacklist.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/SplinterCellChaosTheory.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/SplinterCellChaosTheory.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/SplinterCellDoubleAgent.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/SplinterCellDoubleAgent.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/SplinterCellPandoraTomorrow.XboxRainDroplets.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/SplinterCellPandoraTomorrow.XboxRainDroplets.ini -------------------------------------------------------------------------------- /source/resources/inis/XboxRainDropletsWrapper.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/XboxRainDropletsWrapper.ini -------------------------------------------------------------------------------- /source/resources/inis/XboxRainDropletsWrapper64.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/inis/XboxRainDropletsWrapper64.ini -------------------------------------------------------------------------------- /source/resources/shaders/ps/blurPS.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/shaders/ps/blurPS.hlsl -------------------------------------------------------------------------------- /source/resources/shaders/vs/blurVS.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/shaders/vs/blurVS.hlsl -------------------------------------------------------------------------------- /source/resources/snowdrop1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/snowdrop1.png -------------------------------------------------------------------------------- /source/resources/snowdrop2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/snowdrop2.png -------------------------------------------------------------------------------- /source/resources/snowdrop3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/snowdrop3.png -------------------------------------------------------------------------------- /source/resources/snowdrop4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/snowdrop4.png -------------------------------------------------------------------------------- /source/resources/snowdropmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/resources/snowdropmask.png -------------------------------------------------------------------------------- /source/snow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/snow.h -------------------------------------------------------------------------------- /source/xrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/xrd.h -------------------------------------------------------------------------------- /source/xrd11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/XboxRainDroplets/HEAD/source/xrd11.h --------------------------------------------------------------------------------