Files
client/MareSynchronos/Interop/Ipc/IIpcCaller.cs
2024-02-29 01:16:01 +01:00

8 lines
140 B
C#

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