using System;
namespace FlaxEngine;
///
/// This attribute allows for specifying initialization and deinitialization order for plugins.
///
[Serializable]
[AttributeUsage(AttributeTargets.Class)]
public class PluginLoadOrderAttribute : Attribute
{
///
/// The plugin type to initialize this plugin after.
///
public Type InitializeAfter;
///
/// The plugin type to deinitialize this plugin before.
///
public Type DeinitializeBefore;
}