16 lines
No EOL
379 B
C#
16 lines
No EOL
379 B
C#
using PhoenixLib.Events;
|
|
|
|
namespace WingsEmu.Game.Raids.Events;
|
|
|
|
public class RaidPortalOpenEvent : IAsyncEvent
|
|
{
|
|
public RaidPortalOpenEvent(RaidSubInstance raidSubInstance, IPortalEntity portal)
|
|
{
|
|
RaidSubInstance = raidSubInstance;
|
|
Portal = portal;
|
|
}
|
|
|
|
public RaidSubInstance RaidSubInstance { get; }
|
|
|
|
public IPortalEntity Portal { get; }
|
|
} |