mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2026-02-05 07:07:38 +03:00
15 lines
263 B
C++
15 lines
263 B
C++
#pragma once
|
|
|
|
#include <GfxRenderer.h>
|
|
|
|
#include <vector>
|
|
|
|
class EpdFontLoader {
|
|
public:
|
|
static void loadFontsFromSd(GfxRenderer& renderer);
|
|
static int getBestFontId(const char* familyName, int size);
|
|
|
|
private:
|
|
static std::vector<int> loadedCustomIds;
|
|
};
|