24 lines
636 B
C#
24 lines
636 B
C#
using System.Collections.Generic;
|
|
using SharedLibrary.Objects;
|
|
using SharedLibrary.Database.Models;
|
|
using SharedLibrary.Services;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SharedLibrary.Interfaces
|
|
{
|
|
public interface IManager
|
|
{
|
|
Task Init();
|
|
void Start();
|
|
void Stop();
|
|
ILogger GetLogger();
|
|
IList<Server> GetServers();
|
|
IList<Command> GetCommands();
|
|
IList<Helpers.MessageToken> GetMessageTokens();
|
|
IList<Player> GetActiveClients();
|
|
ClientService GetClientService();
|
|
AliasService GetAliasService();
|
|
PenaltyService GetPenaltyService();
|
|
}
|
|
}
|