15 lines
304 B
C#
15 lines
304 B
C#
using Aurora.Proto.Party;
|
|
|
|
namespace Aurora.Services.Client
|
|
{
|
|
public interface IClientService
|
|
{
|
|
bool IsStarted { get; }
|
|
|
|
RemotePartyService.RemotePartyServiceClient RemotePartyServiceClient { get; }
|
|
|
|
void Start(string hostname, string port);
|
|
|
|
void Close();
|
|
}
|
|
} |