class MAGES::SceneGraph::Group

class Group
{
public:
    // fields

    string Title;
    NodeRef SelfRef;
    Vector2 Position;
    bool IsLogicalGroup = false;
    List Children = new List();
    object EdCtx;

    // methods

    bool IsValid();
};

// direct descendants

class GroupNode;
class GroupView;