CLIPA/IllusionPlugin/IEnhancedPlugin.cs
2016-12-14 22:45:50 +01:00

18 lines
429 B
C#

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