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

12 lines
No EOL
284 B
C#

using System;
using System.Collections.Generic;
using WingsAPI.Scripting.Attribute;
namespace WingsAPI.Scripting.Event.TimeSpace
{
[ScriptEvent("RemoveItems", true)]
public class SRemoveItemsEvent : SEvent
{
public IEnumerable<Guid> Items { get; set; }
}
}