2017-02-07 13:59:30 +09: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 17:15:03 +09:00
|
|
|
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
2016-11-14 18:03:20 +09:00
|
|
|
|
namespace osu.Game.Modes
|
2016-10-04 17:15:03 +09:00
|
|
|
|
{
|
|
|
|
|
public enum PlayMode
|
|
|
|
|
{
|
|
|
|
|
[Description(@"osu!")]
|
|
|
|
|
Osu = 0,
|
2016-10-04 19:40:56 +09:00
|
|
|
|
[Description(@"osu!taiko")]
|
2016-10-04 17:15:03 +09:00
|
|
|
|
Taiko = 1,
|
2016-10-04 19:40:56 +09:00
|
|
|
|
[Description(@"osu!catch")]
|
2016-10-04 17:15:03 +09:00
|
|
|
|
Catch = 2,
|
2016-10-04 19:40:56 +09:00
|
|
|
|
[Description(@"osu!mania")]
|
2016-10-04 17:15:03 +09:00
|
|
|
|
Mania = 3
|
|
|
|
|
}
|
|
|
|
|
}
|