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,8 @@
namespace Nerfed.Runtime.Systems.Synthetic;
public enum DummyWorkloadMode
{
Spin,
Sleep,
Compute,
}