server-master/srcs/WingsAPI.Game/TimeSpaces/Events/TimeSpaceCheckForTasksCompletedEvent.cs
2026-02-10 18:21:30 +01:00

10 lines
No EOL
326 B
C#

using System.Collections.Generic;
using PhoenixLib.Events;
namespace WingsEmu.Game.TimeSpaces.Events;
public class TimeSpaceCheckForTasksCompletedEvent : TimeSpaceTaskCheckEvent
{
public IEnumerable<TimeSpaceSubInstance> TimeSpaceSubInstances { get; init; }
public IEnumerable<IAsyncEvent> Events { get; init; }
}