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

10 lines
No EOL
259 B
C#

using System.Collections.Generic;
using PhoenixLib.Events;
using WingsEmu.Game.Maps;
namespace WingsEmu.Game.TimeSpaces.Events;
public class TimeSpaceRemoveItemsEvent : IAsyncEvent
{
public IEnumerable<TimeSpaceMapItem> ItemsToRemove { get; init; }
}