server-master/srcs/WingsAPI.Game/Npcs/Event/NpcSummonEvent.cs
2026-02-10 18:21:30 +01:00

13 lines
No EOL
322 B
C#

using System;
using System.Collections.Generic;
using PhoenixLib.Events;
using WingsEmu.Game.Maps;
namespace WingsEmu.Game.Npcs.Event;
public class NpcSummonEvent : IAsyncEvent
{
public IMapInstance Map { get; init; }
public IEnumerable<ToSummon> Npcs { get; init; }
public Guid? MonsterId { get; set; }
}