1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-26 14:41:41 +02:00
MLEM/MLEM/Formatting/Codes/AnimatedCode.cs

14 lines
293 B
C#

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