Implement scheduling system with parallel execution support and dummy job systems

This commit is contained in:
max
2026-08-07 12:14:02 +02:00
parent a0f2713fdc
commit 0132c1326d
14 changed files with 844 additions and 5 deletions
@@ -0,0 +1,9 @@
namespace Nerfed.Runtime.Scheduling;
public enum SystemSchedulePhase
{
PreUpdate = 0,
Simulation = 1,
LateSimulation = 2,
PreRender = 3,
}