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,7 @@
namespace Nerfed.Runtime.Scheduling;
public interface IParallelSystemMetadata
{
string ScheduleName { get; }
SystemAccessDeclaration AccessDeclaration { get; }
}