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

15 lines
No EOL
449 B
C#

namespace WingsEmu.Game.Entities.Event;
public class MapJoinMonsterEntityEvent : MonsterEntityEvent
{
public MapJoinMonsterEntityEvent(IMonsterEntity monsterEntity, short? mapX = null, short? mapY = null, bool showEffect = false) : base(monsterEntity)
{
MapX = mapX;
MapY = mapY;
ShowEffect = showEffect;
}
public short? MapX { get; }
public short? MapY { get; }
public bool ShowEffect { get; }
}