CLIPA/IllusionPlugin/IEnhancedPlugin.cs

18 lines
429 B
C#
Raw Permalink Normal View History

2016-12-14 21:45:50 +00:00
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();
}
}