server-master/srcs/WingsAPI.Game/Mates/Events/MateDeathEvent.cs
2026-02-10 18:21:30 +01:00

17 lines
No EOL
390 B
C#

using WingsEmu.Game._packetHandling;
using WingsEmu.Game.Entities;
namespace WingsEmu.Game.Mates.Events;
public class MateDeathEvent : PlayerEvent
{
public MateDeathEvent(IBattleEntity killer, IMateEntity mateEntity)
{
Killer = killer;
MateEntity = mateEntity;
}
public IBattleEntity Killer { get; set; }
public IMateEntity MateEntity { get; set; }
}