using System; using TNode.Attribute; using UnityEngine.UIElements; namespace TNode.Editor.Inspector.InspectorImplementation{ [Obsolete] /// /// Force these element to bind native c# property /// [ViewComponent] public class StringFieldItem:InspectorItem{ public StringFieldItem():base(){ CreateBindable(new TextField()); } } }