mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Merge remote-tracking branch 'origin/master' into net9-rollup
This commit is contained in:
commit
18e19f7b49
2 changed files with 7 additions and 7 deletions
|
|
@ -29,8 +29,8 @@ internal sealed unsafe class TargetManager : IServiceType, ITargetManager
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public IGameObject? Target
|
public IGameObject? Target
|
||||||
{
|
{
|
||||||
get => this.objectTable.CreateObjectReference((IntPtr)Struct->Target);
|
get => this.objectTable.CreateObjectReference((IntPtr)Struct->GetHardTarget());
|
||||||
set => Struct->Target = (FFXIVClientStructs.FFXIV.Client.Game.Object.GameObject*)value?.Address;
|
set => Struct->SetHardTarget((FFXIVClientStructs.FFXIV.Client.Game.Object.GameObject*)value?.Address);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
|
|
@ -57,8 +57,8 @@ internal sealed unsafe class TargetManager : IServiceType, ITargetManager
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public IGameObject? SoftTarget
|
public IGameObject? SoftTarget
|
||||||
{
|
{
|
||||||
get => this.objectTable.CreateObjectReference((IntPtr)Struct->SoftTarget);
|
get => this.objectTable.CreateObjectReference((IntPtr)Struct->GetSoftTarget());
|
||||||
set => Struct->SoftTarget = (FFXIVClientStructs.FFXIV.Client.Game.Object.GameObject*)value?.Address;
|
set => Struct->SetSoftTarget((FFXIVClientStructs.FFXIV.Client.Game.Object.GameObject*)value?.Address);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 484b1b588be5e685855392f090ec9e3eea7b3a71
|
Subproject commit 2c3e84640af5220b78b944a06fdca79c52144075
|
||||||
Loading…
Add table
Add a link
Reference in a new issue