Firstborn/Library/PackageCache/com.unity.mathematics@1.2.6/Unity.Mathematics/Il2CppEagerStaticClassConst...
Schaken-Mods b486678290 Library -Artifacts
Library -Artifacts
2023-03-28 12:24:16 -05: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
{
}
}