mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-02 13:53:40 +01:00
Merge pull request #161 from r1ft4469/StatusEffects
This commit is contained in:
commit
7c70aaebbe
1 changed files with 6 additions and 0 deletions
|
|
@ -1,3 +1,4 @@
|
||||||
|
using Dalamud.Game.ClientState.Structs;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Dalamud.Game.ClientState.Actors.Types {
|
namespace Dalamud.Game.ClientState.Actors.Types {
|
||||||
|
|
@ -71,6 +72,11 @@ namespace Dalamud.Game.ClientState.Actors.Types {
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual int TargetActorID => 0;
|
public virtual int TargetActorID => 0;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Status Effects
|
||||||
|
/// </summary>
|
||||||
|
public StatusEffect[] StatusEffects => this.actorStruct.UIStatusEffects;
|
||||||
|
|
||||||
bool IEquatable<Actor>.Equals(Actor other) => this.ActorId == other.ActorId;
|
bool IEquatable<Actor>.Equals(Actor other) => this.ActorId == other.ActorId;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue