├── .github └── workflows │ ├── linux.yml │ ├── macos.yml │ └── windows.yml ├── .gitignore ├── README.md ├── res └── example.png ├── src └── main.cpp └── xmake.lua /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-examples/imgui-scaffold/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-examples/imgui-scaffold/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-examples/imgui-scaffold/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-examples/imgui-scaffold/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-examples/imgui-scaffold/HEAD/README.md -------------------------------------------------------------------------------- /res/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-examples/imgui-scaffold/HEAD/res/example.png -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-examples/imgui-scaffold/HEAD/src/main.cpp -------------------------------------------------------------------------------- /xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-examples/imgui-scaffold/HEAD/xmake.lua --------------------------------------------------------------------------------