2023-09-22 18:30:17 +02:00
|
|
|
using System;
|
2024-06-24 21:28:41 +02:00
|
|
|
using ReFuel.FreeType;
|
2023-09-22 18:30:17 +02:00
|
|
|
|
2024-07-17 22:18:20 +02:00
|
|
|
namespace Dashboard.Media.Defaults
|
2023-09-22 18:30:17 +02:00
|
|
|
{
|
|
|
|
public static class FTProvider
|
|
|
|
{
|
|
|
|
private static FTLibrary _ft;
|
|
|
|
public static FTLibrary Ft => _ft;
|
|
|
|
|
|
|
|
static FTProvider()
|
|
|
|
{
|
|
|
|
FT.InitFreeType(out _ft);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|