A fork of Eusth's IPA
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.

18 lines
429B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace IllusionPlugin
  5. {
  6. public interface IEnhancedPlugin : IPlugin
  7. {
  8. /// <summary>
  9. /// Gets a list of executables this plugin should be excuted on (without the file ending)
  10. /// </summary>
  11. /// <example>{ "PlayClub", "PlayClubStudio" }</example>
  12. string[] Filter { get; }
  13. void OnLateUpdate();
  14. }
  15. }