1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-15 13:48:46 +02:00
MLEM/MLEM/Formatting/Codes/AnimatedCode.cs
2022-06-17 18:23:47 +02:00

17 lines
382 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;
}
}
}