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.

14 line
361B

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