123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- namespace BepInEx.Preloader.Patcher
- {
-
-
-
- internal class PatcherPlugin
- {
-
-
-
- public IEnumerable<string> TargetDLLs { get; set; } = null;
-
-
-
- public Action Initializer { get; set; } = null;
-
-
-
- public Action Finalizer { get; set; } = null;
-
-
-
- public AssemblyPatcherDelegate Patcher { get; set; } = null;
-
-
-
- public string Name { get; set; } = string.Empty;
- }
- }
|