A game framework written with osu! in mind.
at master 14 lines 462 B view raw
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. 2// See the LICENCE file in the repository root for full licence text. 3 4using osu.Framework.Graphics.Sprites; 5 6namespace osu.Framework.Graphics 7{ 8 public static class FrameworkFont 9 { 10 public static FontUsage Condensed => new FontUsage("RobotoCondensed", weight: "Regular"); 11 12 public static FontUsage Regular => new FontUsage("Roboto", weight: "Regular"); 13 } 14}