13 lines
281 B
C#
13 lines
281 B
C#
![]() |
using UnityEngine;
|
||
|
using UnityEditor;
|
||
|
using BehaviorDesigner.Runtime;
|
||
|
|
||
|
namespace BehaviorDesigner.Editor
|
||
|
{
|
||
|
[CustomEditor(typeof(ExternalBehaviorTree))]
|
||
|
public class ExternalBehaviorTreeInspector : ExternalBehaviorInspector
|
||
|
{
|
||
|
// intentionally left blank
|
||
|
}
|
||
|
}
|