summaryrefslogtreecommitdiff
path: root/text.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-04 13:15:08 -0500
committerpommicket <pommicket@gmail.com>2023-01-04 13:15:08 -0500
commit72a683768566a102d8aa40af17b36e16128b4ab6 (patch)
tree122f4cdfd2f224aede1cd58e7db33793e01a440b /text.h
parent7d4f4b04d642a8e454a773cde0a00be11fe624cf (diff)
finish documenting what files do
Diffstat (limited to 'text.h')
-rw-r--r--text.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/text.h b/text.h
index d396241..e5e5e61 100644
--- a/text.h
+++ b/text.h
@@ -1,9 +1,3 @@
-#ifndef TEXT_H_
-#define TEXT_H_
-
-#include "base.h"
-#include "util.h"
-
// A text-rendering interface.
// Example usage:
// Font *font = text_font_load("font.ttf", 18);
@@ -13,6 +7,11 @@
// text_render(font);
// }
+#ifndef TEXT_H_
+#define TEXT_H_
+
+#include "base.h"
+#include "util.h"
typedef struct Font Font;