This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
mfgames-nitride-cil/src/MfGames.Nitride.Handlebars/Configuration/IHandlebarsLoader.cs

16 lines
442 B
C#

using HandlebarsDotNet;
namespace MfGames.Nitride.Handlebars.Configuration;
/// <summary>
/// Describes a dependency injected loader of templates or modules.
/// </summary>
public interface IHandlebarsLoader
{
/// <summary>
/// Registers the given helper into the handlebars engine.
/// </summary>
/// <param name="handlebars">The handlebars to register the helper into.</param>
void Register(IHandlebars handlebars);
}