using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IPA { /// /// A generic interface for the modification for enhanced plugins. /// public interface IGenericEnhancedPlugin { /// /// Gets a list of executables this plugin should be excuted on (without the file ending) /// /// { "PlayClub", "PlayClubStudio" } string[] Filter { get; } /// /// Called after Update. /// void OnLateUpdate(); } }