Update Package structure

This commit is contained in:
2026-03-08 15:57:05 +09:00
parent 50fe1c8890
commit 2e08a8ad95
11 changed files with 5 additions and 7 deletions

View File

@@ -0,0 +1,20 @@
namespace Misaki.HighPerformance.Jobs;
public readonly ref struct JobExecutionContext
{
public int ThreadIndex
{
get;
}
public IJobScheduler JobScheduler
{
get;
}
public JobExecutionContext(int threadIndex, IJobScheduler jobScheduler)
{
ThreadIndex = threadIndex;
JobScheduler = jobScheduler;
}
}