Plotter/font.h
2017-09-14 18:10:46 +02:00

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