diff options
author | pommicket <pommicket@gmail.com> | 2023-01-04 13:15:08 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-01-04 13:15:08 -0500 |
commit | 72a683768566a102d8aa40af17b36e16128b4ab6 (patch) | |
tree | 122f4cdfd2f224aede1cd58e7db33793e01a440b /text.h | |
parent | 7d4f4b04d642a8e454a773cde0a00be11fe624cf (diff) |
finish documenting what files do
Diffstat (limited to 'text.h')
-rw-r--r-- | text.h | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -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; |