9 lines
No EOL
228 B
C#
9 lines
No EOL
228 B
C#
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace WingsAPI.Plugins
|
|
{
|
|
public interface IGameServerPlugin : IPlugin
|
|
{
|
|
void AddDependencies(IServiceCollection services, GameServerLoader gameServer);
|
|
}
|
|
} |