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/ICharStyler.cs
2016-10-13 19:52:31 -04:00

15 lines
277 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Documents;
namespace Befunge.Editor.CharStyles
{
public interface ICharStyler
{
Run StyledString(string input);
}
}