// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved. using System; namespace FlaxEngine { /// /// Makes a variable show up in the editor as read-only (editing is disabled). /// public sealed class ReadOnlyAttribute : Attribute { } }