├── .gitignore ├── BatWarning.webp ├── LICENSE.txt ├── LatentCoupleHelper.bat ├── LatentCoupleHelper.ps1 ├── LatentCoupleHelper.webp ├── LatentCoupleHelperUp.png └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | /LatentCoupleHelper.json 2 | 3 | -------------------------------------------------------------------------------- /BatWarning.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuntan03/LatentCoupleHelper/HEAD/BatWarning.webp -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuntan03/LatentCoupleHelper/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LatentCoupleHelper.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | PowerShell -Version 5.1 -ExecutionPolicy Bypass -File "%~dp0LatentCoupleHelper.ps1" 3 | -------------------------------------------------------------------------------- /LatentCoupleHelper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuntan03/LatentCoupleHelper/HEAD/LatentCoupleHelper.ps1 -------------------------------------------------------------------------------- /LatentCoupleHelper.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuntan03/LatentCoupleHelper/HEAD/LatentCoupleHelper.webp -------------------------------------------------------------------------------- /LatentCoupleHelperUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuntan03/LatentCoupleHelper/HEAD/LatentCoupleHelperUp.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zuntan03/LatentCoupleHelper/HEAD/README.md --------------------------------------------------------------------------------