Files
TowerDefence/My project/Library/PackageCache/com.unity.mathematics@8017b507cc74/Unity.Mathematics/Il2CppEagerStaticClassConstructionAttribute.cs
Caleb Sandford deQuincey 334021d04e Started project
2025-11-14 17:30:41 +00:00

13 lines
444 B
C#

using System;
namespace Unity.IL2CPP.CompilerServices
{
/// <summary>
/// This is used to indicate to IL2CPP that the static constructors should be executed eagerly at startup
/// rather than lazily at runtime.
/// </summary>
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, Inherited = false, AllowMultiple = false)]
internal class Il2CppEagerStaticClassConstructionAttribute : Attribute
{
}
}