aboutsummaryrefslogtreecommitdiffstats
path: root/src/gdisp/mcufont/mcufont.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gdisp/mcufont/mcufont.h')
-rw-r--r--src/gdisp/mcufont/mcufont.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/gdisp/mcufont/mcufont.h b/src/gdisp/mcufont/mcufont.h
new file mode 100644
index 00000000..7479d2b1
--- /dev/null
+++ b/src/gdisp/mcufont/mcufont.h
@@ -0,0 +1,21 @@
+/*
+ * This file is subject to the terms of the GFX License. If a copy of
+ * the license was not distributed with this file, you can obtain one at:
+ *
+ * http://ugfx.org/license.html
+ */
+
+/* Tiny library for rendering compressed bitmap fonts on microcontrollers. */
+
+#ifndef _MCUFONT_H_
+#define _MCUFONT_H_
+
+#include "mf_config.h"
+#include "mf_encoding.h"
+#include "mf_justify.h"
+#include "mf_kerning.h"
+#include "mf_rlefont.h"
+#include "mf_scaledfont.h"
+#include "mf_wordwrap.h"
+
+#endif