IW4M-Admin/SharedLibraryCore/Interfaces/IScriptPluginFactory.cs

9 lines
160 B
C#
Raw Normal View History

2023-04-04 19:24:13 -04:00
using System;
namespace SharedLibraryCore.Interfaces;
public interface IScriptPluginFactory
{
object CreateScriptPlugin(Type type, string fileName);
}