mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 04:13:40 +01:00
20 lines
437 B
C#
20 lines
437 B
C#
using System;
|
|
using Dalamud.Interface;
|
|
using Dalamud.Interface.GameFonts;
|
|
|
|
namespace Dalamud.Fools.Helper.YesHealMe;
|
|
|
|
public class FontManager : IDisposable
|
|
{
|
|
public FontManager(UiBuilder uiBuilder)
|
|
{
|
|
this.GameFont = uiBuilder.GetGameFontHandle(new GameFontStyle(GameFontFamily.Axis, 52.0f));
|
|
}
|
|
|
|
public GameFontHandle GameFont { get; }
|
|
|
|
public void Dispose()
|
|
{
|
|
this.GameFont.Dispose();
|
|
}
|
|
}
|