server-master/srcs/WingsAPI.Game/Core/GuriHandling/Event/GuriEvent.cs
2026-02-10 18:21:30 +01:00

15 lines
No EOL
310 B
C#

using WingsEmu.Game._packetHandling;
namespace WingsEmu.Game._Guri.Event;
public class GuriEvent : PlayerEvent
{
public long EffectId { get; set; }
public int Data { get; set; }
public long? User { get; set; }
public string Value { get; set; }
public string[] Packet { get; set; }
}