SMS-GCI-Loader/include/drawText.h
2023-05-16 03:27:33 +09:00

15 lines
244 B
C

#include <stdint.h>
#ifndef __DRAW_H__
#define __DRAW_H__
typedef struct {
int16_t x;
int16_t y;
uint32_t fontSize;
uint32_t colorTop;
uint32_t colorBot;
} DrawTextOpt;
void drawText(DrawTextOpt *opt, const char *fmt, ...);
#endif