14 lines
192 B
C
14 lines
192 B
C
// font.h
|
|
|
|
#ifndef _FONT_h
|
|
#define _FONT_h
|
|
|
|
#include "WString.h"
|
|
#include "plotter.h"
|
|
#include "point.h"
|
|
|
|
void drawFontString(Plotter *plotter, String s, int scale = 6);
|
|
|
|
#endif
|
|
|