mirror of
https://github.com/Siccity/xNode.git
synced 2025-12-21 01:36:03 +08:00
12 lines
276 B
C#
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>();
|
|
}
|
|
} |