├── .clang-format ├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── CPM.cmake └── src └── main.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackedMatter/mcpelauncher-strafe-sprint-fix/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackedMatter/mcpelauncher-strafe-sprint-fix/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackedMatter/mcpelauncher-strafe-sprint-fix/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackedMatter/mcpelauncher-strafe-sprint-fix/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackedMatter/mcpelauncher-strafe-sprint-fix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackedMatter/mcpelauncher-strafe-sprint-fix/HEAD/README.md -------------------------------------------------------------------------------- /cmake/CPM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackedMatter/mcpelauncher-strafe-sprint-fix/HEAD/cmake/CPM.cmake -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrackedMatter/mcpelauncher-strafe-sprint-fix/HEAD/src/main.cpp --------------------------------------------------------------------------------