├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── push.yaml ├── .gitignore ├── AppXLauncher.cpp ├── AppXLauncher.h ├── AppXLauncher.ico ├── AppXLauncher.json ├── AppXLauncher.manifest ├── AppXLauncher.rc ├── AppXLauncher.sln ├── AppXLauncher.vcxproj ├── AppXLauncher.vcxproj.filters ├── LICENSE ├── Util.hpp ├── framework.h ├── packages.config ├── pch.cpp ├── pch.h ├── resource.h └── targetver.h /.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | end_of_line = lf 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/.github/workflows/push.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/.gitignore -------------------------------------------------------------------------------- /AppXLauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/AppXLauncher.cpp -------------------------------------------------------------------------------- /AppXLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/AppXLauncher.h -------------------------------------------------------------------------------- /AppXLauncher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/AppXLauncher.ico -------------------------------------------------------------------------------- /AppXLauncher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/AppXLauncher.json -------------------------------------------------------------------------------- /AppXLauncher.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/AppXLauncher.manifest -------------------------------------------------------------------------------- /AppXLauncher.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/AppXLauncher.rc -------------------------------------------------------------------------------- /AppXLauncher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/AppXLauncher.sln -------------------------------------------------------------------------------- /AppXLauncher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/AppXLauncher.vcxproj -------------------------------------------------------------------------------- /AppXLauncher.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/AppXLauncher.vcxproj.filters -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/LICENSE -------------------------------------------------------------------------------- /Util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/Util.hpp -------------------------------------------------------------------------------- /framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/framework.h -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/packages.config -------------------------------------------------------------------------------- /pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/pch.cpp -------------------------------------------------------------------------------- /pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/pch.h -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/resource.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysc3839/AppXLauncher/HEAD/targetver.h --------------------------------------------------------------------------------