A fork of Eusth's IPA
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

14 行
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. }