Files
pico-launcher/arm9/source/themes/IFontRepository.h
2025-11-25 17:41:31 +01:00

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() { }