mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
10 lines
338 B
C#
10 lines
338 B
C#
namespace GFramework.Godot.SourceGenerators.Abstractions.UI;
|
|
|
|
/// <summary>
|
|
/// 标记类型允许为带映射特性的导出集合生成批量注册代码。
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
|
|
public sealed class AutoRegisterExportedCollectionsAttribute : Attribute
|
|
{
|
|
}
|