mirror of
https://github.com/Siccity/xNode.git
synced 2025-12-20 09:16:01 +08:00
10 lines
147 B
C#
10 lines
147 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace XNode {
|
|
[Serializable]
|
|
public class NodeGroup {
|
|
public string name;
|
|
public Rect position;
|
|
}
|
|
} |