2019-12-13 19:14:49 +09: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 16:37:17 +09:00
|
|
|
#nullable disable
|
|
|
|
|
2019-12-10 20:23:15 +09:00
|
|
|
namespace osu.Game.Beatmaps.Legacy
|
|
|
|
{
|
2020-03-12 23:29:11 -07:00
|
|
|
internal enum LegacyStoryLayer
|
2019-12-10 20:23:15 +09:00
|
|
|
{
|
|
|
|
Background = 0,
|
|
|
|
Fail = 1,
|
|
|
|
Pass = 2,
|
2020-03-08 14:02:39 -07:00
|
|
|
Foreground = 3,
|
2020-05-18 20:11:19 +02:00
|
|
|
Overlay = 4,
|
|
|
|
Video = 5
|
2019-12-10 20:23:15 +09:00
|
|
|
}
|
|
|
|
}
|