Files
2026-07-13 13:13:17 +08:00

13 lines
352 B
C#

using ImGuiNET;
namespace T3.Editor.Gui.Styling;
public static class Fonts
{
public static ImFontPtr FontLarge { get; set; }
public static ImFontPtr FontNormal { get; set; }
public static ImFontPtr FontBold { get; set; }
public static ImFontPtr FontSmall { get; set; }
public static ImFontPtr Code { get; set; }
}