server-master/srcs/WingsAPI.Scripting/Event/TimeSpace/SCheckForTasksCompletedEvent.cs
2026-02-10 18:21:30 +01:00

13 lines
No EOL
362 B
C#

using System;
using System.Collections.Generic;
using WingsAPI.Scripting.Attribute;
namespace WingsAPI.Scripting.Event.TimeSpace
{
[ScriptEvent("CheckForTasksCompleted", false)]
public class SCheckForTasksCompletedEvent : SEvent
{
public IEnumerable<Guid> Maps { get; set; }
public IEnumerable<SEvent> Events { get; set; }
}
}