This commit is contained in:
Ottermandias 2025-10-07 12:27:06 +02:00
parent b718b06cda
commit 79d41936cf
2 changed files with 6 additions and 5 deletions

@ -1 +1 @@
Subproject commit 3104cfeefbdf0dd616a5886e07d1b615db15afd4 Subproject commit e634eb0010a0a87615ba054288bdcae8ed48f4bf

View file

@ -1,11 +1,12 @@
using Dalamud.Game.ClientState.Objects.Types; using Dalamud.Game.ClientState.Objects.Types;
using Dalamud.Plugin.Services; using Dalamud.Plugin.Services;
using OtterGui.Services;
using Penumbra.Api.Enums; using Penumbra.Api.Enums;
using Penumbra.Interop.Services; using Penumbra.Interop.Services;
namespace Penumbra.Api.Api; namespace Penumbra.Api.Api;
public class RedrawApi(RedrawService redrawService, IFramework framework) : IPenumbraApiRedraw, Luna.IApiService public class RedrawApi(RedrawService redrawService, IFramework framework) : IPenumbraApiRedraw, IApiService
{ {
public void RedrawObject(int gameObjectIndex, RedrawType setting) public void RedrawObject(int gameObjectIndex, RedrawType setting)
{ {
@ -32,4 +33,4 @@ public class RedrawApi(RedrawService redrawService, IFramework framework) : IPen
add => redrawService.GameObjectRedrawn += value; add => redrawService.GameObjectRedrawn += value;
remove => redrawService.GameObjectRedrawn -= value; remove => redrawService.GameObjectRedrawn -= value;
} }
} }