2014-10-26 18:47:14 -07:00
|
|
|
#pragma once
|
|
|
|
|
2014-11-25 09:16:26 -05:00
|
|
|
#include <string>
|
2014-10-26 18:47:14 -07:00
|
|
|
|
|
|
|
#include "font.h"
|
|
|
|
|
|
|
|
int drawCharacter(u8* fb, font_s* f, char c, s16 x, s16 y, u16 w, u16 h);
|
2014-11-25 09:16:26 -05:00
|
|
|
void drawString(u8* fb, font_s* f, const std::string& str, s16 x, s16 y, u16 w, u16 h);
|
|
|
|
void gfxDrawText(gfxScreen_t screen, gfx3dSide_t side, font_s* f, const std::string& str, s16 x, s16 y);
|