2019-12-13 18:14:49 +08:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2019-12-10 19:23:15 +08:00
|
|
|
namespace osu.Game.Beatmaps.Legacy
|
|
|
|
{
|
2020-03-13 14:29:11 +08:00
|
|
|
internal enum LegacyStoryLayer
|
2019-12-10 19:23:15 +08:00
|
|
|
{
|
|
|
|
Background = 0,
|
|
|
|
Fail = 1,
|
|
|
|
Pass = 2,
|
2020-03-09 05:02:39 +08:00
|
|
|
Foreground = 3,
|
2020-05-19 02:11:19 +08:00
|
|
|
Overlay = 4,
|
|
|
|
Video = 5
|
2019-12-10 19:23:15 +08:00
|
|
|
}
|
|
|
|
}
|