Files
Ragon/Ragon.SimpleServer/Source/SimplePluginFactory.cs
T
2022-10-22 21:34:35 +04:00

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);
}
}
}