// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; namespace FlaxEngine { /// /// Indicates that a static class initializes the code module. All static, void and parameterless methods within the class will be invoked upon module loading. /// [AttributeUsage(AttributeTargets.Class)] public sealed class ModuleInitializerAttribute : Attribute { } }