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

20 lines
No EOL
441 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Game._packetHandling;
using WingsEmu.Game.Inventory;
namespace WingsEmu.Game.Raids.Events;
public class RaidPartyCreateEvent : PlayerEvent
{
public RaidPartyCreateEvent(byte raidType, InventoryItem itemToRemove)
{
RaidType = raidType;
ItemToRemove = itemToRemove;
}
public byte RaidType { get; }
public InventoryItem ItemToRemove { get; }
}