1
0
mirror of https://github.com/Siccity/xNode.git synced 2026-03-26 22:49:02 +08:00
xNode/Runtime/GroupNode.cs

12 lines
276 B
C#

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