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

9 lines
No EOL
197 B
C#

using PhoenixLib.Events;
using WingsEmu.Game.Entities;
namespace WingsEmu.Game.Monster.Event;
public class MonsterRespawnedEvent : IAsyncEvent
{
public IMonsterEntity Monster { get; init; }
}