JisolGame/JEX_GAS/Assets/GAS/General/Util/IsExternalInit.cs
2024-10-18 03:16:09 +08:00

13 lines
343 B
C#

using System.ComponentModel;
namespace System.Runtime.CompilerServices
{
/// <summary>
/// 让Unity支持init setter
/// <see href="https://docs.unity.cn/cn/2022.3/Manual/CSharpCompiler.html">unity文档</see>。
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
public class IsExternalInit
{
}
}