8d52d7ddc5
-fixed issue with configurationmanager files and threading -servers on webfront listed in descending player count -fixed resolution of tempban times from console feedback -Added tests plugin to simulate functionality
23 lines
654 B
C#
23 lines
654 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SharedLibrary.Interfaces
|
|
{
|
|
public interface IManager
|
|
{
|
|
void Init();
|
|
void Start();
|
|
void Stop();
|
|
ILogger GetLogger();
|
|
List<Server> GetServers();
|
|
List<Command> GetCommands();
|
|
IPenaltyList GetClientPenalties();
|
|
ClientsDB GetClientDatabase();
|
|
AliasesDB GetAliasesDatabase();
|
|
IList<Helpers.MessageToken> GetMessageTokens();
|
|
IList<Player> GetActiveClients();
|
|
IList<Player> GetAliasClients(Player player);
|
|
IList<Aliases> GetAliases(Player player);
|
|
IList<Player> GetPrivilegedClients();
|
|
}
|
|
}
|