1
0
mirror of https://github.com/Siccity/xNode.git synced 2025-12-20 09:16:01 +08:00
xNode/Scripts/NodeGroup.cs
2019-08-04 23:07:55 +02:00

10 lines
147 B
C#

using System;
using UnityEngine;
namespace XNode {
[Serializable]
public class NodeGroup {
public string name;
public Rect position;
}
}