mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 19:17:22 +01:00
7 lines
140 B
C#
7 lines
140 B
C#
namespace MareSynchronos.Interop.Ipc;
|
|
|
|
public interface IIpcCaller : IDisposable
|
|
{
|
|
bool APIAvailable { get; }
|
|
void CheckAPI();
|
|
}
|