IPatchPlugin.cs 263 B

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