mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
18 lines
581 B
C#
18 lines
581 B
C#
using SharedLibraryCore.Configuration;
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// defines the capabilities of game server instance factory
|
|
/// </summary>
|
|
public interface IGameServerInstanceFactory
|
|
{
|
|
/// <summary>
|
|
/// creates the instance of a game server
|
|
/// </summary>
|
|
/// <param name="config">server configuration</param>
|
|
/// <param name="manager">application manager</param>
|
|
/// <returns></returns>
|
|
Server CreateServer(ServerConfiguration config, IManager manager);
|
|
}
|
|
} |