mirror of
https://github.com/Siccity/xNode.git
synced 2025-12-20 09:16:01 +08:00
20 lines
378 B
C#
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() {
|
|
|
|
}
|
|
}
|
|
}
|