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.
|
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- namespace IllusionPlugin
- {
- public interface IEnhancedPlugin : IPlugin
- {
- /// <summary>
- /// Gets a list of executables this plugin should be excuted on (without the file ending)
- /// </summary>
- /// <example>{ "PlayClub", "PlayClubStudio" }</example>
- string[] Filter { get; }
-
- void OnLateUpdate();
- }
- }
|