You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
570 B

5 years ago
5 years ago
  1. // ReSharper disable CheckNamespace
  2. namespace IPA
  3. {
  4. /// <summary>
  5. /// A generic interface for the modification for enhanced plugins.
  6. /// </summary>
  7. public interface IGenericEnhancedPlugin
  8. {
  9. /// <summary>
  10. /// Gets a list of executables this plugin should be executed on (without the file ending)
  11. /// </summary>
  12. /// <example>{ "PlayClub", "PlayClubStudio" }</example>
  13. string[] Filter { get; }
  14. /// <summary>
  15. /// Called after Update.
  16. /// </summary>
  17. void OnLateUpdate();
  18. }
  19. }