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

20 lines
No EOL
491 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Game._packetHandling;
using WingsEmu.Packets.Enums.Relations;
namespace WingsEmu.Game.Relations;
public class AddRelationEvent : PlayerEvent
{
public AddRelationEvent(long targetCharacterId, CharacterRelationType relationType)
{
TargetCharacterId = targetCharacterId;
RelationType = relationType;
}
public long TargetCharacterId { get; }
public CharacterRelationType RelationType { get; }
}