.NET 9 forward compatibility changes

This doesn't switch the projects over to .NET 9, but it does make them work on .NET 9 when we decide to switch in the future.
This commit is contained in:
Pieter-Jan Briers
2024-11-19 19:53:38 +01:00
parent 90a8c66e96
commit 18a17da8fa

View File

@@ -1064,8 +1064,8 @@ public abstract class SharedUserInterfaceSystem : EntitySystem
/// </summary>
private record struct ActorRangeCheckJob() : IParallelRobustJob
{
public EntityQuery<TransformComponent> XformQuery;
public SharedUserInterfaceSystem System;
public required EntityQuery<TransformComponent> XformQuery;
public required SharedUserInterfaceSystem System;
public readonly List<(EntityUid Ui, Enum Key, InterfaceData Data, EntityUid Actor, bool Result)> ActorRanges = new();
public void Execute(int index)