You've already forked pico-launcher
mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-01-09 16:28:48 -08:00
14 lines
260 B
C++
14 lines
260 B
C++
#pragma once
|
|
#include "gui/font/nitroFont2.h"
|
|
#include "FontType.h"
|
|
|
|
class IFontRepository
|
|
{
|
|
public:
|
|
virtual ~IFontRepository() = 0;
|
|
|
|
virtual const nft2_header_t* GetFont(FontType fontType) const = 0;
|
|
};
|
|
|
|
inline IFontRepository::~IFontRepository() { }
|