18 lines
429 B
C#
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();
|
|||
|
}
|
|||
|
}
|