10 lines
221 B
C#
10 lines
221 B
C#
namespace TightWiki.Engine.Library.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Handles post-processing function calls.
|
|
/// </summary>
|
|
public interface IPostProcessingFunctionHandler : IFunctionHandler
|
|
{
|
|
}
|
|
}
|