Files
Nerfed/Nerfed.Runtime/Scheduling/SystemSchedulePhase.cs

10 lines
156 B
C#

namespace Nerfed.Runtime.Scheduling;
public enum SystemSchedulePhase
{
PreUpdate = 0,
Simulation = 1,
LateSimulation = 2,
PreRender = 3,
}