mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Merge pull request #150 from karashiiro/master
This commit is contained in:
commit
617fc943b1
1 changed files with 3 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ namespace Dalamud.Game.ClientState.Actors.Types {
|
|||
/// <summary>
|
||||
/// This class represents a basic FFXIV actor.
|
||||
/// </summary>
|
||||
public class Actor {
|
||||
public class Actor : IEquatable<Actor> {
|
||||
/// <summary>
|
||||
/// The memory representation of the base actor.
|
||||
/// </summary>
|
||||
|
|
@ -70,5 +70,7 @@ namespace Dalamud.Game.ClientState.Actors.Types {
|
|||
/// The target of the actor
|
||||
/// </summary>
|
||||
public virtual int TargetActorID => 0;
|
||||
|
||||
bool IEquatable<Actor>.Equals(Actor other) => this.ActorId == other.ActorId;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue