mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 21:42:58 +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
|
|
}
|
|
}
|