13 lines
352 B
C#
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; }
|
|
|
|
} |