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.

25 lines
650 B

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