mirror of
https://gitea.tendokyu.moe/beerpsi/sinmai-mods.git
synced 2025-02-15 02:12:35 +01:00
23 lines
409 B
C#
23 lines
409 B
C#
|
using System;
|
||
|
|
||
|
namespace MoreChartFormats.Simai.Errors
|
||
|
{
|
||
|
public class ScopeMismatchException : SimaiException
|
||
|
{
|
||
|
public readonly ScopeType correctScope;
|
||
|
|
||
|
public ScopeMismatchException(int line, int character, ScopeType correctScope) : base(line, character)
|
||
|
{
|
||
|
this.correctScope = correctScope;
|
||
|
}
|
||
|
|
||
|
[Flags]
|
||
|
public enum ScopeType
|
||
|
{
|
||
|
Note = 1,
|
||
|
Slide = 1 << 1,
|
||
|
Global = 1 << 2
|
||
|
}
|
||
|
}
|
||
|
}
|