osu/osu.Game/Beatmaps/Legacy/LegacyStoryLayer.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
362 B
C#
Raw Normal View History

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
{
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
}
}