// ReSharper disable CheckNamespace
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" }
string[] Filter { get; }
///
/// Called after Update.
///
void OnLateUpdate();
}
}