Replace DifficultyColouredContainer with a more scalable solution

This commit is contained in:
Dean Herbert
2019-08-17 15:16:24 +09:00
parent 8258c4a80a
commit 4fa9abeece
6 changed files with 73 additions and 94 deletions

View File

@ -0,0 +1,15 @@
// 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 DifficultyRating
{
Easy,
Normal,
Hard,
Insane,
Expert,
ExpertPlus
}
}