mirror of
https://github.com/osukey/osukey.git
synced 2025-05-28 00:47:28 +09:00
21 lines
473 B
C#
21 lines
473 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
namespace osu.Game.Beatmaps
|
|
{
|
|
public enum BeatmapSetOnlineGenre
|
|
{
|
|
Any = 0,
|
|
Unspecified = 1,
|
|
VideoGame = 2,
|
|
Anime = 3,
|
|
Rock = 4,
|
|
Pop = 5,
|
|
Other = 6,
|
|
Novelty = 7,
|
|
// genre_id 8 doesnt exist
|
|
HipHop = 9,
|
|
Electronic = 10
|
|
}
|
|
}
|