File size: 444 Bytes
18a519f
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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
    {
    }
}