2017-06-01 13:42:28 -04:00
|
|
|
|
using System.Collections.Generic;
|
2017-11-25 20:29:58 -05:00
|
|
|
|
using SharedLibrary.Objects;
|
|
|
|
|
using SharedLibrary.Database.Models;
|
|
|
|
|
using SharedLibrary.Services;
|
2018-03-06 02:22:19 -05:00
|
|
|
|
using System.Threading.Tasks;
|
2018-03-14 01:36:25 -04:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
using SharedLibrary.Configuration;
|
2017-05-26 18:49:27 -04:00
|
|
|
|
|
|
|
|
|
namespace SharedLibrary.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IManager
|
|
|
|
|
{
|
2018-03-06 02:22:19 -05:00
|
|
|
|
Task Init();
|
2017-05-26 18:49:27 -04:00
|
|
|
|
void Start();
|
|
|
|
|
void Stop();
|
2017-05-27 19:29:20 -04:00
|
|
|
|
ILogger GetLogger();
|
2017-09-29 22:42:24 -04: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();
|
2018-03-18 22:25:11 -04:00
|
|
|
|
IConfigurationHandler<ApplicationConfiguration> GetApplicationSettings();
|
2018-03-06 02:22:19 -05:00
|
|
|
|
ClientService GetClientService();
|
2017-11-25 20:29:58 -05:00
|
|
|
|
AliasService GetAliasService();
|
|
|
|
|
PenaltyService GetPenaltyService();
|
2017-05-26 18:49:27 -04:00
|
|
|
|
}
|
|
|
|
|
}
|