server-master/srcs/WingsAPI.Game/Relations/RemoveRelationEvent.cs
2026-02-10 18:21:30 +01:00

16 lines
No EOL
418 B
C#

using WingsEmu.Game._packetHandling;
using WingsEmu.Packets.Enums.Relations;
namespace WingsEmu.Game.Relations;
public class RemoveRelationEvent : PlayerEvent
{
public RemoveRelationEvent(long targetCharacterId, CharacterRelationType type)
{
TargetCharacterId = targetCharacterId;
Type = type;
}
public long TargetCharacterId { get; }
public CharacterRelationType Type { get; }
}