mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Add IsTargetable to GameObject (#1269)
* Add IsTargetable * Fix style inconsistency
This commit is contained in:
parent
3fa8968027
commit
2fe7cfb5ef
1 changed files with 5 additions and 0 deletions
|
|
@ -144,6 +144,11 @@ public unsafe partial class GameObject
|
|||
/// </summary>
|
||||
public bool IsDead => this.Struct->IsDead();
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether the object is targetable.
|
||||
/// </summary>
|
||||
public bool IsTargetable => this.Struct->GetIsTargetable();
|
||||
|
||||
/// <summary>
|
||||
/// Gets the position of this <see cref="GameObject" />.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue