struct ExampleTreeNode

Overview

struct ExampleTreeNode
{
    // fields

    char Name[28] = "";
    int UID = 0;
    ExampleTreeNode* Parent = NULL;
    ImVector<ExampleTreeNode*> Childs;
    int IndexInParent = 0;
    bool HasData = false;
    bool DataMyBool = true;
    int DataMyInt = 128;
    ImVec2 DataMyVec2 = ImVec2(0.0f, 3.141592f);
};