1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-27 18:32:56 +08:00

Add enum with font types

This commit is contained in:
ansel 2022-12-03 22:38:11 +03:00
parent 61bfd2f6b2
commit 0db6c2ada1

View File

@ -0,0 +1,18 @@
// 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.
using osu.Game.Skinning.Components;
namespace osu.Game.Skinning
{
/// <summary>
/// The type of built-in font to use for <see cref="DefaultTextSkinComponent"/>.
/// </summary>
public enum DefaultFont
{
Venera,
Torus,
TorusAlt,
Inter
}
}