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