micromenu/inc/gfx/font.h

23 lines
418 B
C
Raw Normal View History

2018-11-01 18:39:19 +00:00
//
// Created by jedi on 11/1/18.
//
#ifndef MGL_DMXMENU_FONT_H
#define MGL_DMXMENU_FONT_H
2018-11-02 08:27:20 +00:00
class canvas;
2018-11-01 18:39:19 +00:00
class font {
2018-11-02 08:27:20 +00:00
public:
typedef const bool raw_font[32][20];
private:
raw_font& raw_data_;
public:
font(raw_font&);
void print(int x, int y, char c, canvas&);
void print(int x, int y, char* str, canvas&);
void print(int x, int y, const char* str, canvas&);
2018-11-01 18:39:19 +00:00
};
#endif //MGL_DMXMENU_FONT_H