2017-06-01 13:42:28 -04:00
|
|
|
|
using System.Collections.Generic;
|
2017-05-26 18:49:27 -04:00
|
|
|
|
|
|
|
|
|
namespace SharedLibrary.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IManager
|
|
|
|
|
{
|
|
|
|
|
void Init();
|
|
|
|
|
void Start();
|
|
|
|
|
void Stop();
|
2017-05-27 19:29:20 -04:00
|
|
|
|
ILogger GetLogger();
|
2017-05-26 18:49:27 -04:00
|
|
|
|
List<Server> GetServers();
|
|
|
|
|
List<Command> GetCommands();
|
2017-05-27 18:08:04 -04:00
|
|
|
|
IPenaltyList GetClientPenalties();
|
|
|
|
|
ClientsDB GetClientDatabase();
|
2017-05-28 21:54:46 -04: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 19:28:08 -04:00
|
|
|
|
IList<Player> GetAliasClients(Player player);
|
|
|
|
|
IList<Aliases> GetAliases(Player player);
|
2017-05-26 18:49:27 -04:00
|
|
|
|
}
|
|
|
|
|
}
|