2017-05-26 18:49:27 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
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-05-26 18:49:27 -04:00
|
|
|
|
}
|
|
|
|
|
}
|