1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-05 01:17:06 +02:00
MLEM/MLEM/Formatting/Codes/AnimatedCode.cs
2021-12-28 14:56:11 +01:00

16 lines
381 B
C#

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