15 lines
No EOL
449 B
C#
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; }
|
|
} |