mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 23:25:09 +01:00
11 lines
222 B
C
11 lines
222 B
C
|
#ifndef FONTSYSTEM_H_
|
||
|
#define FONTSYSTEM_H_
|
||
|
|
||
|
bool SetupDefaultFont(const char *path);
|
||
|
void ClearFontData();
|
||
|
void SetFontScale(float Scale);
|
||
|
float GetFontScale();
|
||
|
void SetFont();
|
||
|
bool font_folder_exists();
|
||
|
|
||
|
#endif
|