10 lines
No EOL
247 B
C#
10 lines
No EOL
247 B
C#
using WingsEmu.Game._packetHandling;
|
|
|
|
namespace WingsEmu.Game.Raids.Events;
|
|
|
|
public class RaidInstanceLivesIncDecEvent : PlayerEvent
|
|
{
|
|
public RaidInstanceLivesIncDecEvent(short amount) => Amount = amount;
|
|
|
|
public short Amount { get; }
|
|
} |