mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
11 lines
169 B
C#
11 lines
169 B
C#
using System;
|
|
namespace osu.Game.Beatmaps
|
|
{
|
|
public enum GameMode
|
|
{
|
|
Osu = 0,
|
|
Taiko = 1,
|
|
CatchTheBeat = 2,
|
|
OsuMania = 3,
|
|
}
|
|
} |