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

16 lines
No EOL
343 B
C#

using WingsEmu.Game._packetHandling;
using WingsEmu.Packets.Enums;
namespace WingsEmu.Game.Characters.Events;
public class AddExpEvent : PlayerEvent
{
public AddExpEvent(long exp, LevelType levelType)
{
Exp = exp;
LevelType = levelType;
}
public long Exp { get; }
public LevelType LevelType { get; }
}