IW4M-Admin/SharedLibrary/Interfaces/IManager.cs

23 lines
605 B
C#
Raw Normal View History

using System.Collections.Generic;
using SharedLibrary.Objects;
using SharedLibrary.Database.Models;
using SharedLibrary.Services;
namespace SharedLibrary.Interfaces
{
public interface IManager
{
void Init();
void Start();
void Stop();
2017-05-27 19:29:20 -04:00
ILogger GetLogger();
IList<Server> GetServers();
IList<Command> GetCommands();
IList<Helpers.MessageToken> GetMessageTokens();
IList<Player> GetActiveClients();
ClientService GetClientService();
AliasService GetAliasService();
PenaltyService GetPenaltyService();
}
}