| 1852 | } |
| 1853 | |
| 1854 | void DemoHeader(const char* label, void (*demo)()) { |
| 1855 | if (ImGui::TreeNodeEx(label)) { |
| 1856 | demo(); |
| 1857 | ImGui::TreePop(); |
| 1858 | } |
| 1859 | } |
| 1860 | |
| 1861 | void ShowAllDemos() { |
| 1862 | ImGui::Text("ImPlot3D says olá! (%s) (%d)", IMPLOT3D_VERSION, IMPLOT3D_VERSION_NUM); |