mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 07:13:58 -05:00
implement remote assembly loading
This commit is contained in:
11
SharedLibraryCore/Interfaces/IRemoteAssemblyHandler.cs
Normal file
11
SharedLibraryCore/Interfaces/IRemoteAssemblyHandler.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Reflection;
|
||||
|
||||
namespace SharedLibraryCore.Interfaces
|
||||
{
|
||||
public interface IRemoteAssemblyHandler
|
||||
{
|
||||
IEnumerable<Assembly> DecryptAssemblies(string[] encryptedAssemblies);
|
||||
IEnumerable<string> DecryptScripts(string[] encryptedScripts);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user