Files

10 lines
164 B
C#
Raw Permalink Normal View History

using System;
namespace XCEngine
{
[AttributeUsage(AttributeTargets.Field, Inherited = true)]
public sealed class SerializeField : Attribute
{
}
}