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

17 lines
No EOL
398 B
C#

using WingsEmu.Game._packetHandling;
using WingsEmu.Packets.Enums;
namespace WingsEmu.Game.Characters.Events;
public class InvitationEvent : PlayerEvent
{
public InvitationEvent(long targetCharacterId, InvitationType type)
{
TargetCharacterId = targetCharacterId;
Type = type;
}
public long TargetCharacterId { get; }
public InvitationType Type { get; }
}