Files
ZelWiki/TightWiki.Engine.Library/Interfaces/IPostProcessingFunctionHandler.cs
2025-01-22 23:31:03 +08:00

10 lines
221 B
C#

namespace TightWiki.Engine.Library.Interfaces
{
/// <summary>
/// Handles post-processing function calls.
/// </summary>
public interface IPostProcessingFunctionHandler : IFunctionHandler
{
}
}