mirror of
https://github.com/ppy/osu.git
synced 2025-02-08 09:03:07 +08: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,
|
|
}
|
|
} |