Upload from upload_mods.ps1
This commit is contained in:
19
Scripts/Utilities/Modular/IModuleProcessor.cs
Normal file
19
Scripts/Utilities/Modular/IModuleProcessor.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using KFCommonUtilityLib.Scripts.StaticManagers;
|
||||
using Mono.Cecil.Cil;
|
||||
using Mono.Cecil;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace KFCommonUtilityLib
|
||||
{
|
||||
public interface IModuleProcessor
|
||||
{
|
||||
void InitModules(ModuleManipulator manipulator, Type targetType, Type baseType, params Type[] moduleTypes);
|
||||
bool BuildConstructor(ModuleManipulator manipulator, MethodDefinition mtddef_ctor);
|
||||
Type GetModuleTypeByName(string name);
|
||||
bool MatchSpecialArgs(ParameterDefinition par, MethodDefinition mtddef_target, MethodPatchInfo mtdpinf_derived, int moduleIndex, List<Instruction> list_inst_pars, ILProcessor il);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user