10 lines
164 B
C#
10 lines
164 B
C#
using System;
|
|
|
|
namespace XCEngine
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field, Inherited = true)]
|
|
public sealed class SerializeField : Attribute
|
|
{
|
|
}
|
|
}
|