1
0
mirror of https://github.com/Siccity/xNode.git synced 2025-12-20 17:26:02 +08:00
xNode/Scripts/NodeGroup.cs
2019-01-23 20:40:49 +01:00

13 lines
302 B
C#

using System;
using UnityEngine;
namespace XNode
{
[Serializable]
public class NodeGroup : ScriptableObject
{
[SerializeField] public NodeGraph graph;
[SerializeField] public Vector2 position;
[SerializeField] public Vector2 size = new Vector2(200, 300);
}
}