mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
14 lines
257 B
C#
14 lines
257 B
C#
namespace Robust.Shared.ContentPack
|
|
{
|
|
/// <summary>
|
|
/// Run levels of the Content entry point.
|
|
/// </summary>
|
|
public enum ModRunLevel: byte
|
|
{
|
|
Error = 0,
|
|
Init = 1,
|
|
PostInit = 2,
|
|
PreInit = 3,
|
|
}
|
|
}
|