N64FlashcartMenu/src/menu/fonts.h

28 lines
317 B
C
Raw Normal View History

/**
* @file fonts.h
* @brief Menu fonts
* @ingroup menu
*/
#ifndef FONTS_H__
#define FONTS_H__
typedef enum {
FNT_DEFAULT = 1,
} menu_font_type_t;
typedef enum {
STL_DEFAULT = 0,
STL_DIRECTORY,
STL_SAVE,
STL_MEDIA,
STL_UNKNOWN,
} menu_font_style_t;
void fonts_init (void);
#endif