├── .gitattributes ├── .gitignore ├── IconConsole.ico ├── IconWindow.ico ├── LICENSE.md ├── Manifest.xml ├── PortableLauncher.c ├── PortableLauncher.rc ├── PortableLauncher.sln ├── PortableLauncher.vcxproj ├── PortableLauncher.vcxproj.filters ├── README-CN.md └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/PortableLauncher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/PortableLauncher/HEAD/.gitignore -------------------------------------------------------------------------------- /IconConsole.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/PortableLauncher/HEAD/IconConsole.ico -------------------------------------------------------------------------------- /IconWindow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/PortableLauncher/HEAD/IconWindow.ico -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/PortableLauncher/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/PortableLauncher/HEAD/Manifest.xml -------------------------------------------------------------------------------- /PortableLauncher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/PortableLauncher/HEAD/PortableLauncher.c -------------------------------------------------------------------------------- /PortableLauncher.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/PortableLauncher/HEAD/PortableLauncher.rc -------------------------------------------------------------------------------- /PortableLauncher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/PortableLauncher/HEAD/PortableLauncher.sln -------------------------------------------------------------------------------- /PortableLauncher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/PortableLauncher/HEAD/PortableLauncher.vcxproj -------------------------------------------------------------------------------- /PortableLauncher.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/PortableLauncher/HEAD/PortableLauncher.vcxproj.filters -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/PortableLauncher/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukiIsait/PortableLauncher/HEAD/README.md --------------------------------------------------------------------------------