Files
FlaxEngine/Source/Engine/Scripting/Attributes/SerializeAttribute.cs
2021-01-02 14:28:49 +01:00

15 lines
408 B
C#

// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
using System;
namespace FlaxEngine
{
/// <summary>
/// Indicates that a field or a property of a serializable class should be be serialized. This class cannot be inherited.
/// </summary>
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public sealed class SerializeAttribute : Attribute
{
}
}