Add SerializeField private field support

This commit is contained in:
2026-04-03 16:19:56 +08:00
parent d4d825e1b1
commit 2b19b4bece
10 changed files with 333 additions and 17 deletions

View File

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