1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-16 13:32:54 +08:00
osu-lazer/osu.Game/Screens/Edit/Screens/EditorScreenMode.cs
2017-10-07 01:44:20 +09:00

20 lines
488 B
C#

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.ComponentModel;
namespace osu.Game.Screens.Edit.Screens
{
public enum EditorScreenMode
{
[Description("setup")]
SongSetup,
[Description("compose")]
Compose,
[Description("design")]
Design,
[Description("timing")]
Timing,
}
}