Add legacy font enum and extensions

This commit is contained in:
Salman Ahmed
2021-03-07 02:15:23 +03:00
parent 115c186cb7
commit 91741564e8
2 changed files with 61 additions and 2 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.Skinning
{
/// <summary>
/// The type of legacy font to use for <see cref="LegacySpriteText"/>s.
/// </summary>
public enum LegacyFont
{
Score,
Combo,
HitCircle,
}
}