mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-12 18:27:24 +01:00
Add IPC Calls to IPC Tester.
This commit is contained in:
parent
44345b9429
commit
d6c36ca4f7
1 changed files with 8 additions and 0 deletions
|
|
@ -138,6 +138,14 @@ public class StateIpcTester : IUiService, IDisposable
|
||||||
if (ImUtf8.Button("Apply Base64##Name"u8))
|
if (ImUtf8.Button("Apply Base64##Name"u8))
|
||||||
_lastError = new ApplyStateName(_pluginInterface).Invoke(_base64State, _gameObjectName, _key, _flags);
|
_lastError = new ApplyStateName(_pluginInterface).Invoke(_base64State, _gameObjectName, _key, _flags);
|
||||||
|
|
||||||
|
IpcTesterHelpers.DrawIntro(ReapplyState.Label);
|
||||||
|
if (ImUtf8.Button("Reapply##Idx"u8))
|
||||||
|
_lastError = new ReapplyState(_pluginInterface).Invoke(_gameObjectIndex, _key, _flags);
|
||||||
|
|
||||||
|
IpcTesterHelpers.DrawIntro(ReapplyStateName.Label);
|
||||||
|
if (ImUtf8.Button("Reapply##Name"u8))
|
||||||
|
_lastError = new ReapplyStateName(_pluginInterface).Invoke(_gameObjectName, _key, _flags);
|
||||||
|
|
||||||
IpcTesterHelpers.DrawIntro(RevertState.Label);
|
IpcTesterHelpers.DrawIntro(RevertState.Label);
|
||||||
if (ImUtf8.Button("Revert##Idx"u8))
|
if (ImUtf8.Button("Revert##Idx"u8))
|
||||||
_lastError = new RevertState(_pluginInterface).Invoke(_gameObjectIndex, _key, _flags);
|
_lastError = new RevertState(_pluginInterface).Invoke(_gameObjectIndex, _key, _flags);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue