yaze 0.2.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
font_loader.h
Go to the documentation of this file.
1#ifndef YAZE_APP_CORE_PLATFORM_FONTLOADER_H
2#define YAZE_APP_CORE_PLATFORM_FONTLOADER_H
3
4#include "absl/status/status.h"
5
6namespace yaze {
7namespace core {
8
9struct FontConfig {
10 const char* font_path;
11 float font_size;
12};
13
14absl::Status LoadPackageFonts();
15
16absl::Status ReloadPackageFont(const FontConfig& config);
17
19
20} // namespace core
21} // namespace yaze
22
23#endif // YAZE_APP_CORE_PLATFORM_FONTLOADER_H
absl::Status ReloadPackageFont(const FontConfig &config)
absl::Status LoadPackageFonts()
void LoadSystemFonts()
Main namespace for the application.
Definition controller.cc:18
const char * font_path
Definition font_loader.h:10