25 lines
425 B
C#
25 lines
425 B
C#
|
|
|||
|
using System;
|
|||
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
using UnityEngine.UIElements;
|
|||
|
|
|||
|
namespace Ether
|
|||
|
{
|
|||
|
public class SplitViewer : TwoPaneSplitView
|
|||
|
{
|
|||
|
public new class UxmlFactory : UxmlFactory<SplitViewer, TwoPaneSplitView.UxmlTraits> { }
|
|||
|
|
|||
|
public SplitViewer()
|
|||
|
{
|
|||
|
Init();
|
|||
|
}
|
|||
|
|
|||
|
private void Init()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|