2017-06-01 12:42:28 -05:00
|
|
|
|
using System.Collections.Generic;
|
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-05-27 17:08:04 -05:00
|
|
|
|
IPenaltyList GetClientPenalties();
|
|
|
|
|
ClientsDB GetClientDatabase();
|
2017-05-28 20:54:46 -05:00
|
|
|
|
AliasesDB GetAliasesDatabase();
|
2017-06-12 17:47:31 -04:00
|
|
|
|
IList<Helpers.MessageToken> GetMessageTokens();
|
2017-06-12 13:50:00 -04:00
|
|
|
|
IList<Player> GetActiveClients();
|
2017-08-17 18:28:08 -05:00
|
|
|
|
IList<Player> GetAliasClients(Player player);
|
|
|
|
|
IList<Aliases> GetAliases(Player player);
|
2017-09-27 15:07:43 -05:00
|
|
|
|
IList<Player> GetPrivilegedClients();
|
2017-05-26 17:49:27 -05:00
|
|
|
|
}
|
|
|
|
|
}
|