mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Make Home, Settings and PlayMode buttons work.
This commit is contained in:
20
osu.Game/GameModes/Play/PlayMode.cs
Normal file
20
osu.Game/GameModes/Play/PlayMode.cs
Normal file
@ -0,0 +1,20 @@
|
||||
//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
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user