20 lines
No EOL
441 B
C#
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; }
|
|
} |