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

16 lines
No EOL
425 B
C#

namespace WingsEmu.Game.Raids;
public interface IRaidComponent
{
public RaidParty Raid { get; }
public byte RaidDeaths { get; }
public bool IsInRaidParty { get; }
public bool HasRaidStarted { get; }
public bool RaidTeamIsFull { get; }
public bool IsRaidLeader(long characterId);
public void SetRaidParty(RaidParty raidParty);
public void AddRaidDeath();
public void RemoveRaidDeath();
}