1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 15:27:25 +08:00
osu-lazer/osu.Game/Beatmaps/Legacy/LegacyStoryLayer.cs

16 lines
359 B
C#
Raw Normal View History

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.
2019-12-10 19:23:15 +08:00
namespace osu.Game.Beatmaps.Legacy
{
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
}
}