using System;
// ReSharper disable CheckNamespace
namespace IPA.Old
{
///
///
/// An enhanced version of the standard IPA plugin.
///
[Obsolete("When building plugins for Beat Saber, use IPA.IEnhancedPlugin")]
public interface IEnhancedPlugin : IPlugin
{
///
/// 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();
}
}