10 lines
No EOL
247 B
C#
10 lines
No EOL
247 B
C#
using PhoenixLib.Events;
|
|
|
|
namespace WingsEmu.Game.Raids.Events;
|
|
|
|
public class RaidInstanceDestroyEvent : IAsyncEvent
|
|
{
|
|
public RaidInstanceDestroyEvent(RaidParty raidParty) => RaidParty = raidParty;
|
|
|
|
public RaidParty RaidParty { get; }
|
|
} |