1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 15:27:28 +08:00
osu-lazer/osu.Game/GameModes/Play/PlayMode.cs
2016-10-04 17:15:03 +09:00

21 lines
478 B
C#

//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;
namespace osu.Game.GameModes.Play
{
public enum PlayMode
{
[Description(@"osu!")]
Osu = 0,
[Description(@"taiko")]
Taiko = 1,
[Description(@"catch")]
Catch = 2,
[Description(@"mania")]
Mania = 3
}
}