14 lines
291 B
C#
14 lines
291 B
C#
// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved.
|
|
|
|
using System;
|
|
|
|
namespace FlaxEngine
|
|
{
|
|
/// <summary>
|
|
/// Makes a variable show up in the editor as read-only (editing is disabled).
|
|
/// </summary>
|
|
public sealed class ReadOnlyAttribute : Attribute
|
|
{
|
|
}
|
|
}
|