10 lines
156 B
C#
10 lines
156 B
C#
namespace Nerfed.Runtime.Scheduling;
|
|
|
|
public enum SystemSchedulePhase
|
|
{
|
|
PreUpdate = 0,
|
|
Simulation = 1,
|
|
LateSimulation = 2,
|
|
PreRender = 3,
|
|
}
|