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

17 lines
234 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BaseNode : Node {
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
}