using InABox.Core; namespace InABox.IPC { public interface IRPCServer { void Start(); void Stop(); event LogFunction? OnLog; } }