mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-23 08:17:47 +01:00
Expose CharacterData.ShieldValue to Dalamud's Character wrapper. (#1608)
This commit is contained in:
parent
d59d5a4cbc
commit
14c5ad1605
1 changed files with 5 additions and 0 deletions
|
|
@ -61,6 +61,11 @@ public unsafe class Character : GameObject
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public uint MaxCp => this.Struct->CharacterData.MaxCraftingPoints;
|
public uint MaxCp => this.Struct->CharacterData.MaxCraftingPoints;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the shield percentage of this Chara.
|
||||||
|
/// </summary>
|
||||||
|
public byte ShieldPercentage => this.Struct->CharacterData.ShieldValue;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the ClassJob of this Chara.
|
/// Gets the ClassJob of this Chara.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue