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