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