├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── HImGuiAnimation.cpp ├── HImGuiAnimation.h ├── LICENSE ├── README.md ├── SECURITY.md └── example ├── GUI.h └── main.cpp /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiAnimation/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiAnimation/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiAnimation/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiAnimation/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiAnimation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HImGuiAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiAnimation/HEAD/HImGuiAnimation.cpp -------------------------------------------------------------------------------- /HImGuiAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiAnimation/HEAD/HImGuiAnimation.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiAnimation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiAnimation/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiAnimation/HEAD/SECURITY.md -------------------------------------------------------------------------------- /example/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiAnimation/HEAD/example/GUI.h -------------------------------------------------------------------------------- /example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Half-People/HImGuiAnimation/HEAD/example/main.cpp --------------------------------------------------------------------------------