You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
444 B
13 lines
444 B
2 years ago
|
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
|
||
|
{
|
||
|
}
|
||
|
}
|