struct ExampleAsset

Overview

struct ExampleAsset
{
    // fields

    ImGuiID ID;
    int Type;
    static const ImGuiTableSortSpecs* s_current_sort_specs = NULL;

    // construction

    ExampleAsset(
        ImGuiID id,
        int type
        );

    // methods

    static void SortWithSortSpecs(
        ImGuiTableSortSpecs* sort_specs,
        ExampleAsset* items,
        int items_count
        );

    static int IMGUI_CDECL CompareWithSortSpecs(
        const void* lhs,
        const void* rhs
        );
};