mirror of
https://github.com/Siccity/xNode.git
synced 2025-12-20 01:06:01 +08:00
9 lines
222 B
C#
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);
|
|
}
|