Files
SnowcloakClient/MareSynchronos/Interop/Ipc/IIpcCaller.cs
2025-08-22 02:19:48 +01:00

8 lines
140 B
C#

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