2017-06-01 12:42:28 -05:00
|
|
|
|
using System.Collections.Generic;
|
2017-11-25 19:29:58 -06:00
|
|
|
|
using SharedLibrary.Objects;
|
|
|
|
|
using SharedLibrary.Database.Models;
|
|
|
|
|
using SharedLibrary.Services;
|
2017-05-26 17:49:27 -05:00
|
|
|
|
|
|
|
|
|
namespace SharedLibrary.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IManager
|
|
|
|
|
{
|
|
|
|
|
void Init();
|
|
|
|
|
void Start();
|
|
|
|
|
void Stop();
|
2017-05-27 18:29:20 -05:00
|
|
|
|
ILogger GetLogger();
|
2017-09-29 21:42:24 -05:00
|
|
|
|
IList<Server> GetServers();
|
|
|
|
|
IList<Command> GetCommands();
|
2017-06-12 17:47:31 -04:00
|
|
|
|
IList<Helpers.MessageToken> GetMessageTokens();
|
2017-06-12 13:50:00 -04:00
|
|
|
|
IList<Player> GetActiveClients();
|
2017-11-25 19:29:58 -06:00
|
|
|
|
ClientService GetClientService();
|
|
|
|
|
AliasService GetAliasService();
|
|
|
|
|
PenaltyService GetPenaltyService();
|
2017-05-26 17:49:27 -05:00
|
|
|
|
}
|
|
|
|
|
}
|