using System.Text.RegularExpressions; namespace MLEM.Formatting.Codes { /// public class ResetFormattingCode : Code { /// public ResetFormattingCode(Match match, Regex regex) : base(match, regex) {} /// public override bool EndsHere(Code other) { return true; } } }