// ReSharper disable CheckNamespace using System; namespace IPA { /// /// A generic interface for the modification for enhanced plugins. /// public interface IGenericEnhancedPlugin { /// /// Gets a list of executables this plugin should be executed on (without the file ending) /// /// { "PlayClub", "PlayClubStudio" } [Obsolete("Ignored.")] string[] Filter { get; } /// /// Called after Update. /// void OnLateUpdate(); } }