18 lines
395 B
C#
18 lines
395 B
C#
using System.Runtime.InteropServices;
|
|
using Ragon.Core;
|
|
|
|
namespace Game.Source
|
|
{
|
|
public class SimplePluginFactory : PluginFactory
|
|
{
|
|
public PluginBase CreatePlugin(string map)
|
|
{
|
|
return new SimplePlugin();
|
|
}
|
|
|
|
public IApplicationHandler CreateAuthorizationProvider(Configuration configuration)
|
|
{
|
|
return new ApplicationHandlerByKey(configuration);
|
|
}
|
|
}
|
|
} |