using System; using Object = UnityEngine.Object; namespace RosettaUI.Editor { public class ObjectFieldElement : FieldBaseElement { public readonly Type objectType; public ObjectFieldElement(LabelElement label, IBinder binder, Type objectType) : base(label, binder) { this.objectType = objectType; } } }