2016-10-04 16:15:03 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
2016-11-14 17:03:20 +08:00
|
|
|
|
namespace osu.Game.Modes
|
2016-10-04 16:15:03 +08:00
|
|
|
|
{
|
|
|
|
|
public enum PlayMode
|
|
|
|
|
{
|
|
|
|
|
[Description(@"osu!")]
|
|
|
|
|
Osu = 0,
|
2016-10-04 18:40:56 +08:00
|
|
|
|
[Description(@"osu!taiko")]
|
2016-10-04 16:15:03 +08:00
|
|
|
|
Taiko = 1,
|
2016-10-04 18:40:56 +08:00
|
|
|
|
[Description(@"osu!catch")]
|
2016-10-04 16:15:03 +08:00
|
|
|
|
Catch = 2,
|
2016-10-04 18:40:56 +08:00
|
|
|
|
[Description(@"osu!mania")]
|
2016-10-04 16:15:03 +08:00
|
|
|
|
Mania = 3
|
|
|
|
|
}
|
|
|
|
|
}
|