├── LICENSE ├── README.md └── Src ├── LetItRainInstallerMSI ├── LetItRainInstallerMSI.vdproj ├── rain_icon.ico └── rain_icon_2.ico ├── LetItRainInstallerMSIX ├── BundleArtifacts │ ├── x64.txt │ └── x86.txt ├── Images │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── Package.appxmanifest └── let-it-rain-msix.wapproj ├── Study └── TransparentWindow-master.zip ├── let-it-rain.sln └── let-it-rain ├── 2let-it-rain.ico ├── 2small.ico ├── CPUUsageTracker.h ├── CallBackWindow.h ├── DisplayData.cpp ├── DisplayData.h ├── DisplayWindow.cpp ├── DisplayWindow.h ├── FastNoiseLite.h ├── Global.h ├── Main.cpp ├── MathUtil.h ├── Notes.txt ├── OptionDialog.cpp ├── OptionDialog.h ├── RainDrop.cpp ├── RainDrop.h ├── RandomGenerator.h ├── Resource.h ├── SettingsManager.cpp ├── SettingsManager.h ├── SnowFlake.cpp ├── SnowFlake.h ├── Splatter.cpp ├── Splatter.h ├── Vector2.cpp ├── Vector2.h ├── colorpick.hpp ├── framework.h ├── github.ico ├── let-it-rain.ico ├── let-it-rain.rc ├── let-it-rain.vcxproj ├── let-it-rain.vcxproj.filters ├── let-it-rain.vcxproj.user ├── small.ico └── targetver.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/README.md -------------------------------------------------------------------------------- /Src/LetItRainInstallerMSI/LetItRainInstallerMSI.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/LetItRainInstallerMSI/LetItRainInstallerMSI.vdproj -------------------------------------------------------------------------------- /Src/LetItRainInstallerMSI/rain_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/LetItRainInstallerMSI/rain_icon.ico -------------------------------------------------------------------------------- /Src/LetItRainInstallerMSI/rain_icon_2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/LetItRainInstallerMSI/rain_icon_2.ico -------------------------------------------------------------------------------- /Src/LetItRainInstallerMSIX/BundleArtifacts/x64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/LetItRainInstallerMSIX/BundleArtifacts/x64.txt -------------------------------------------------------------------------------- /Src/LetItRainInstallerMSIX/BundleArtifacts/x86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/LetItRainInstallerMSIX/BundleArtifacts/x86.txt -------------------------------------------------------------------------------- /Src/LetItRainInstallerMSIX/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/LetItRainInstallerMSIX/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Src/LetItRainInstallerMSIX/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/LetItRainInstallerMSIX/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Src/LetItRainInstallerMSIX/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/LetItRainInstallerMSIX/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Src/LetItRainInstallerMSIX/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/LetItRainInstallerMSIX/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Src/LetItRainInstallerMSIX/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/LetItRainInstallerMSIX/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Src/LetItRainInstallerMSIX/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/LetItRainInstallerMSIX/Images/StoreLogo.png -------------------------------------------------------------------------------- /Src/LetItRainInstallerMSIX/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/LetItRainInstallerMSIX/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Src/LetItRainInstallerMSIX/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/LetItRainInstallerMSIX/Package.appxmanifest -------------------------------------------------------------------------------- /Src/LetItRainInstallerMSIX/let-it-rain-msix.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/LetItRainInstallerMSIX/let-it-rain-msix.wapproj -------------------------------------------------------------------------------- /Src/Study/TransparentWindow-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/Study/TransparentWindow-master.zip -------------------------------------------------------------------------------- /Src/let-it-rain.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain.sln -------------------------------------------------------------------------------- /Src/let-it-rain/2let-it-rain.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/2let-it-rain.ico -------------------------------------------------------------------------------- /Src/let-it-rain/2small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/2small.ico -------------------------------------------------------------------------------- /Src/let-it-rain/CPUUsageTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/CPUUsageTracker.h -------------------------------------------------------------------------------- /Src/let-it-rain/CallBackWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/CallBackWindow.h -------------------------------------------------------------------------------- /Src/let-it-rain/DisplayData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/DisplayData.cpp -------------------------------------------------------------------------------- /Src/let-it-rain/DisplayData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/DisplayData.h -------------------------------------------------------------------------------- /Src/let-it-rain/DisplayWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/DisplayWindow.cpp -------------------------------------------------------------------------------- /Src/let-it-rain/DisplayWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/DisplayWindow.h -------------------------------------------------------------------------------- /Src/let-it-rain/FastNoiseLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/FastNoiseLite.h -------------------------------------------------------------------------------- /Src/let-it-rain/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/Global.h -------------------------------------------------------------------------------- /Src/let-it-rain/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/Main.cpp -------------------------------------------------------------------------------- /Src/let-it-rain/MathUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/MathUtil.h -------------------------------------------------------------------------------- /Src/let-it-rain/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/Notes.txt -------------------------------------------------------------------------------- /Src/let-it-rain/OptionDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/OptionDialog.cpp -------------------------------------------------------------------------------- /Src/let-it-rain/OptionDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/OptionDialog.h -------------------------------------------------------------------------------- /Src/let-it-rain/RainDrop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/RainDrop.cpp -------------------------------------------------------------------------------- /Src/let-it-rain/RainDrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/RainDrop.h -------------------------------------------------------------------------------- /Src/let-it-rain/RandomGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/RandomGenerator.h -------------------------------------------------------------------------------- /Src/let-it-rain/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/Resource.h -------------------------------------------------------------------------------- /Src/let-it-rain/SettingsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/SettingsManager.cpp -------------------------------------------------------------------------------- /Src/let-it-rain/SettingsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/SettingsManager.h -------------------------------------------------------------------------------- /Src/let-it-rain/SnowFlake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/SnowFlake.cpp -------------------------------------------------------------------------------- /Src/let-it-rain/SnowFlake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/SnowFlake.h -------------------------------------------------------------------------------- /Src/let-it-rain/Splatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/Splatter.cpp -------------------------------------------------------------------------------- /Src/let-it-rain/Splatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/Splatter.h -------------------------------------------------------------------------------- /Src/let-it-rain/Vector2.cpp: -------------------------------------------------------------------------------- 1 | #include "Vector2.h" 2 | -------------------------------------------------------------------------------- /Src/let-it-rain/Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/Vector2.h -------------------------------------------------------------------------------- /Src/let-it-rain/colorpick.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/colorpick.hpp -------------------------------------------------------------------------------- /Src/let-it-rain/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/framework.h -------------------------------------------------------------------------------- /Src/let-it-rain/github.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/github.ico -------------------------------------------------------------------------------- /Src/let-it-rain/let-it-rain.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/let-it-rain.ico -------------------------------------------------------------------------------- /Src/let-it-rain/let-it-rain.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/let-it-rain.rc -------------------------------------------------------------------------------- /Src/let-it-rain/let-it-rain.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/let-it-rain.vcxproj -------------------------------------------------------------------------------- /Src/let-it-rain/let-it-rain.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/let-it-rain.vcxproj.filters -------------------------------------------------------------------------------- /Src/let-it-rain/let-it-rain.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/let-it-rain.vcxproj.user -------------------------------------------------------------------------------- /Src/let-it-rain/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/small.ico -------------------------------------------------------------------------------- /Src/let-it-rain/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riyasy/RainProject/HEAD/Src/let-it-rain/targetver.h --------------------------------------------------------------------------------