namespace ZelWiki.Engine.Library.Interfaces
{
///
/// Handles wiki emojis.
///
public interface IEmojiHandler
{
///
/// Handles an emoji instruction.
///
/// Reference to the wiki state object
/// The lookup key for the given emoji.
/// The desired 1-100 scale factor for the emoji.
public HandlerResult Handle(IZelEngineState state, string key, int scale);
}
}