10 lines
No EOL
259 B
C#
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; }
|
|
} |