10 lines
184 B
C#
10 lines
184 B
C#
8 months ago
|
using UnityEngine.UIElements;
|
||
|
using UnityEngine.UIElements.Experimental;
|
||
|
|
||
|
namespace AV.UITK
|
||
|
{
|
||
|
public interface IFluent<T> where T : VisualElement
|
||
|
{
|
||
|
T x { get; }
|
||
|
}
|
||
|
}
|