├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── FileBrowser ├── Dirent │ └── dirent.h ├── ImGuiFileBrowser.cpp └── ImGuiFileBrowser.h ├── LICENSE └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallickgunner/ImGui-Addons/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallickgunner/ImGui-Addons/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallickgunner/ImGui-Addons/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallickgunner/ImGui-Addons/HEAD/.gitmodules -------------------------------------------------------------------------------- /FileBrowser/Dirent/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallickgunner/ImGui-Addons/HEAD/FileBrowser/Dirent/dirent.h -------------------------------------------------------------------------------- /FileBrowser/ImGuiFileBrowser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallickgunner/ImGui-Addons/HEAD/FileBrowser/ImGuiFileBrowser.cpp -------------------------------------------------------------------------------- /FileBrowser/ImGuiFileBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallickgunner/ImGui-Addons/HEAD/FileBrowser/ImGuiFileBrowser.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallickgunner/ImGui-Addons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gallickgunner/ImGui-Addons/HEAD/README.md --------------------------------------------------------------------------------