Files
ClubPenguinClient/MareSynchronos/Interop/Ipc/IIpcCaller.cs
2025-02-09 16:10:28 +00:00

8 lines
140 B
C#

namespace MareSynchronos.Interop.Ipc;
public interface IIpcCaller : IDisposable
{
bool APIAvailable { get; }
void CheckAPI();
}