mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
29 lines
889 B
C#
29 lines
889 B
C#
namespace Robust.Shared.ContentPack
|
|
{
|
|
/// <summary>
|
|
/// Levels at which point the content assemblies are getting updates.
|
|
/// </summary>
|
|
public enum ModUpdateLevel : byte
|
|
{
|
|
/// <summary>
|
|
/// This update is called before the main state manager on process frames.
|
|
/// </summary>
|
|
PreEngine,
|
|
|
|
/// <summary>
|
|
/// This update is called before the main state manager on render frames, thus only applies to the client.
|
|
/// </summary>
|
|
FramePreEngine,
|
|
|
|
/// <summary>
|
|
/// This update is called after the main state manager on process frames.
|
|
/// </summary>
|
|
PostEngine,
|
|
|
|
/// <summary>
|
|
/// This update is called after the main state manager on render frames, thus only applies to the client.
|
|
/// </summary>
|
|
FramePostEngine,
|
|
}
|
|
}
|