// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. using System; namespace FlaxEngine { /// /// Instructs UI editor to use multiline textbox for editing property or field. /// /// [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] public sealed class MultilineTextAttribute : Attribute { } }