Files
ihob/Assets/Extensions/TotalJSON/Scripts/Attributes/IncludeToJSONSerializeAttribute.cs
2026-02-21 17:04:05 -08:00

23 lines
558 B
C#

// IncludeToJSONSerialize
using System;
namespace Leguar.TotalJSON {
/// <summary>
/// Attribute that can be used to include single field to JSON serialization. With default serialization settings, this does same as UnityEngine.SerializeField attribute.
/// </summary>
[AttributeUsage(AttributeTargets.Field, Inherited = false)]
public sealed class IncludeToJSONSerializeAttribute : Attribute {
/// <summary>
/// Constructor for new IncludeToJSONSerialize attribute.
/// </summary>
public IncludeToJSONSerializeAttribute() {
}
}
}