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