1
0
mirror of https://github.com/Siccity/xNode.git synced 2025-12-21 01:36:03 +08:00
xNode/Runtime/GroupNode.cs
2023-01-10 21:11:23 +00:00

12 lines
276 B
C#

using System.Collections.Generic;
using UnityEngine;
namespace XNode
{
[NodeWidth(208), NodeHeight(176)]
public class GroupNode : Node
{
public Color color = new Color(1.0F,1.0F,1.0F,1.0F);
public List<Node> children = new List<Node>();
}
}