10 lines
195 B
C#
10 lines
195 B
C#
namespace Ragon.Core
|
|
{
|
|
public interface PluginFactory
|
|
{
|
|
public PluginBase CreatePlugin(string map);
|
|
public AuthorizationManager CreateManager(Configuration configuration);
|
|
}
|
|
|
|
|
|
} |