├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md └── include ├── matdash.hpp └── matdash ├── boilerplate.hpp ├── cocos.hpp ├── console.hpp ├── detail ├── gen.hpp ├── gen.py └── impl.hpp └── minhook.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/mat-dash/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/mat-dash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/mat-dash/HEAD/README.md -------------------------------------------------------------------------------- /include/matdash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/mat-dash/HEAD/include/matdash.hpp -------------------------------------------------------------------------------- /include/matdash/boilerplate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/mat-dash/HEAD/include/matdash/boilerplate.hpp -------------------------------------------------------------------------------- /include/matdash/cocos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/mat-dash/HEAD/include/matdash/cocos.hpp -------------------------------------------------------------------------------- /include/matdash/console.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/mat-dash/HEAD/include/matdash/console.hpp -------------------------------------------------------------------------------- /include/matdash/detail/gen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/mat-dash/HEAD/include/matdash/detail/gen.hpp -------------------------------------------------------------------------------- /include/matdash/detail/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/mat-dash/HEAD/include/matdash/detail/gen.py -------------------------------------------------------------------------------- /include/matdash/detail/impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/mat-dash/HEAD/include/matdash/detail/impl.hpp -------------------------------------------------------------------------------- /include/matdash/minhook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matcool/mat-dash/HEAD/include/matdash/minhook.hpp --------------------------------------------------------------------------------