NLDClient-yudde/ProjectNLD/Assets/Editor/UIInfoBuilder/Data/UIInfoNode.cs

12 lines
312 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace UIInfoBuilder.Data
{
public class UIInfoNode
{
public string name;
public bool active;
public List<UIInfoComponent> components = new List<UIInfoComponent>();
public List<UIInfoNode> children = new List<UIInfoNode>();
}
}