├── .gitignore ├── Config.cs ├── IMYSHook.csproj ├── IMYSHook.sln ├── LICENSE ├── Notification.cs ├── Patch.cs ├── Plugin.cs ├── PluginBehavior.cs ├── README.md ├── README_TC.md ├── SS_Notification.ps1 ├── Tasker.cs ├── Translation.cs ├── Translation.md ├── config.json └── img ├── imys_translation1.png ├── imys_translation2.png ├── imys_translation3.png └── imys_translation4.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/.gitignore -------------------------------------------------------------------------------- /Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/Config.cs -------------------------------------------------------------------------------- /IMYSHook.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/IMYSHook.csproj -------------------------------------------------------------------------------- /IMYSHook.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/IMYSHook.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/LICENSE -------------------------------------------------------------------------------- /Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/Notification.cs -------------------------------------------------------------------------------- /Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/Patch.cs -------------------------------------------------------------------------------- /Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/Plugin.cs -------------------------------------------------------------------------------- /PluginBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/PluginBehavior.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/README.md -------------------------------------------------------------------------------- /README_TC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/README_TC.md -------------------------------------------------------------------------------- /SS_Notification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/SS_Notification.ps1 -------------------------------------------------------------------------------- /Tasker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/Tasker.cs -------------------------------------------------------------------------------- /Translation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/Translation.cs -------------------------------------------------------------------------------- /Translation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/Translation.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/config.json -------------------------------------------------------------------------------- /img/imys_translation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/img/imys_translation1.png -------------------------------------------------------------------------------- /img/imys_translation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/img/imys_translation2.png -------------------------------------------------------------------------------- /img/imys_translation3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/img/imys_translation3.png -------------------------------------------------------------------------------- /img/imys_translation4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisMystery/IMYSHook/HEAD/img/imys_translation4.png --------------------------------------------------------------------------------