struct ImGuiPtrOrIndex

Overview

#include <imgui_internal.h>

struct ImGuiPtrOrIndex
{
    // fields

    void* Ptr;
    int Index;

    // construction

    ImGuiPtrOrIndex(void* ptr);
    ImGuiPtrOrIndex(int index);
};