Files
Ragon/Game/Source/GameFactory.cs
T
2022-04-30 08:20:17 +04:00

11 lines
302 B
C#

using Ragon.Core;
namespace Game.Source
{
public class GameFactory : PluginFactory
{
public string PluginName { get; set; } = "ExamplePlugin";
public PluginBase CreatePlugin(string map) => new ExamplePlugin();
public AuthorizationManager CreateManager() => new GameAuthorizer();
}
}