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

20 lines
378 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace UNEC {
/// <summary> Base class for all nodes </summary>
public abstract class Node : MonoBehaviour {
// Use this for initialization
void Start() {
}
// Update is called once per frame
void Update() {
}
}
}