BehaviorTree / Editor / UIElements / SplitView.cs
SplitView.cs
Raw
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UIElements;

namespace AI.BT
{
    public class SplitView : UnityEngine.UIElements.TwoPaneSplitView
    {
        public new class UxmlFactory : UxmlFactory<SplitView, TwoPaneSplitView.UxmlTraits> { }

        public SplitView() { }
    }
}