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