├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json ├── launch.json └── tasks.json ├── Makefile ├── Plaits.cpp └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | build/* -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemmer/PlaitsPatchInit/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemmer/PlaitsPatchInit/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemmer/PlaitsPatchInit/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemmer/PlaitsPatchInit/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemmer/PlaitsPatchInit/HEAD/Makefile -------------------------------------------------------------------------------- /Plaits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemmer/PlaitsPatchInit/HEAD/Plaits.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemmer/PlaitsPatchInit/HEAD/README.md --------------------------------------------------------------------------------