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