aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/scripts/test_ports/vcpkg-ci-hello-imgui/project/main.cpp
blob: 12433aa598b760449a2f53a6af4db60146a1cdf3 (plain)
1
2
3
4
5
6
7
8
9
10
#include <hello_imgui/hello_imgui.h>

int main()
{
    HelloImGui::Run([]() {
        ImGui::Text("Hello vcpkg");
        ImGui::ShowDemoWindow();
    });
    return 0;
}