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.

24 lines
617 B

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