// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
using System;
namespace FlaxEngine
{
///
/// Makes a variable not show up in the editor.
///
[Serializable]
public sealed class HideInEditorAttribute : Attribute
{
///
/// Initializes a new instance of the class.
///
public HideInEditorAttribute()
{
}
}
}