1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-30 16:06:35 +02:00
MLEM/MLEM/Formatting/Obsolete/FormattingCodeCollection.cs
2020-05-15 00:34:04 +02:00

26 lines
802 B
C#

using System;
using System.Collections.Generic;
using System.Text.RegularExpressions;
using MLEM.Misc;
namespace MLEM.Formatting {
[Obsolete("Use the new text formatting system in MLEM.Formatting instead")]
public class FormattingCodeCollection : Dictionary<int, List<FormattingCodeData>> {
}
[Obsolete("Use the new text formatting system in MLEM.Formatting instead")]
public class FormattingCodeData : GenericDataHolder {
public readonly FormattingCode Code;
public readonly Match Match;
public readonly int UnformattedIndex;
public FormattingCodeData(FormattingCode code, Match match, int unformattedIndex) {
this.Code = code;
this.Match = match;
this.UnformattedIndex = unformattedIndex;
}
}
}