mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 10:57:27 +08:00
13 lines
179 B
C#
13 lines
179 B
C#
|
using System;
|
||
|
|
||
|
namespace osu.Game.Beatmaps.Legacy
|
||
|
{
|
||
|
[Flags]
|
||
|
internal enum LegacyEffectFlags
|
||
|
{
|
||
|
None = 0,
|
||
|
Kiai = 1,
|
||
|
OmitFirstBarLine = 8
|
||
|
}
|
||
|
}
|