IPatchPlugin.cs 233 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Mono.Cecil;
  6. namespace BepInEx.Patcher
  7. {
  8. public interface IPatchPlugin
  9. {
  10. void Patch(AssemblyDefinition assembly);
  11. }
  12. }