1
0
mirror of https://github.com/Siccity/xNode.git synced 2025-12-20 01:06:01 +08:00
xNode/Scripts/Node.cs
2017-09-15 15:56:17 +02:00

9 lines
222 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary> Base class for all nodes </summary>
public abstract class Node {
public Rect position = new Rect(0,0,200,200);
}