// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved.
using System;
namespace FlaxEngine
{
///
/// Makes a variable show up in the editor.
///
///
/// If used on a private field/property you may also need to add to ensure that modified value is being serialized.
///
public sealed class ShowInEditorAttribute : Attribute
{
}
}