├── .clang-format ├── .editorconfig ├── .github └── workflows │ └── build.yml ├── .gitignore ├── Makefile ├── README.md ├── include └── main.h └── src └── main.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/OPL-Launcher/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/OPL-Launcher/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/OPL-Launcher/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/OPL-Launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/OPL-Launcher/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/OPL-Launcher/HEAD/README.md -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/OPL-Launcher/HEAD/include/main.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2homebrew/OPL-Launcher/HEAD/src/main.c --------------------------------------------------------------------------------