Skip to content

Commit 11b82fd

Browse files
committed
Add CS links for future cleanup
1 parent c416828 commit 11b82fd

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

Brio/Game/GPose/GPoseService.cs

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ public override unsafe void Start()
2424
{
2525
GPoseState = Dalamud.PluginInterface.UiBuilder.GposeActive ? GPoseState.Inside : GPoseState.Outside;
2626

27+
28+
// TODO: Move to clientstructs
29+
// Track: https://github.com/aers/FFXIVClientStructs/pull/291
2730
var framework = Framework.Instance();
2831
if(framework == null)
2932
throw new Exception("Framework not found");

Brio/Game/Interop/ClientObjectManagerInterop.cs

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ namespace Brio.Game.Interop;
66
public class ClientObjectManagerInterop
77
{
88
// TODO: All this should go back to FFXIV Client Structs
9+
// Track: https://github.com/aers/FFXIVClientStructs/pull/287
910

1011
[Signature("48 8D 0D ?? ?? ?? ?? E8 ?? ?? ?? ?? C7 43 60 FF FF FF FF", ScanType = ScanType.StaticAddress)]
1112
private IntPtr Instance = IntPtr.Zero;

Brio/Game/Interop/EventGPoseControllerInterop.cs

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ namespace Brio.Game.Interop;
77
public class EventGPoseControllerInterop
88
{
99
// TODO: All this should go back to FFXIV Client Structs
10+
// Track: https://github.com/aers/FFXIVClientStructs/pull/295
1011

1112
private delegate uint AddToGPoseDelegate(IntPtr instance, IntPtr target, uint u1 = 0);
1213
[Signature("E8 ?? ?? ?? ?? E8 ?? ?? ?? ?? 80 BE 8C 00 00 00 02", ScanType = ScanType.Text)]

0 commit comments

Comments
 (0)