This repository has been archived on 2026-05-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Befunge.Net/Befunge/Editor/CharStyles/ITextStyler.cs

13 lines
272 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Documents;
namespace Befunge.Editor.CharStyles
{
public interface ITextStyler
{
IEnumerable<Run> StylizedString(string input);
}
}