10 lines
208 B
C#
10 lines
208 B
C#
namespace Nerfed.Runtime.Systems.Synthetic;
|
|
|
|
public sealed class DummyLongJobSharedState
|
|
{
|
|
public JobHandle InFlight;
|
|
public int LastResult;
|
|
public int SubmitCount;
|
|
public int ConsumeCount;
|
|
}
|