mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 17:13:06 +08:00
19 lines
444 B
C#
19 lines
444 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.
|
|
|
|
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
|
|
}
|
|
}
|