mirror of
https://github.com/Siccity/xNode.git
synced 2025-12-20 01:06:01 +08:00
13 lines
238 B
C#
13 lines
238 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEditor;
|
|
|
|
public class NodeEditor : Editor {
|
|
|
|
|
|
public override void OnInspectorGUI() {
|
|
base.OnInspectorGUI();
|
|
}
|
|
}
|