-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoreinterfaces IGameServerInstanceFactory
RaidMax edited this page May 21, 2023
·
1 revision
defines the capabilities of game server instance factory
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IGameServerInstanceFactory[[IGameServerInstanceFactory]]
class SharedLibraryCore.Interfaces.IGameServerInstanceFactory interfaceStyle;
end
Returns | Name |
---|---|
Server |
CreateServer (ServerConfiguration config, IManager manager)creates the instance of a game server |
defines the capabilities of game server instance factory
public Server CreateServer(ServerConfiguration config, IManager manager)
Type | Name | Description |
---|---|---|
ServerConfiguration |
config | server configuration |
IManager |
manager | application manager |
creates the instance of a game server
Generated with ModularDoc