diff options
author | PikalaxALT <PikalaxALT@gmail.com> | 2020-04-15 20:20:40 -0400 |
---|---|---|
committer | PikalaxALT <PikalaxALT@gmail.com> | 2020-04-15 20:20:40 -0400 |
commit | 09d866602ecc76fdc5e9be9e3bd1ae0b8547ff13 (patch) | |
tree | 312c771cf265503718f3e8c2eb42b92708c55f36 /tools/nitrogfx/font.h | |
parent | b661c7888c57280a19801b320cf7860e6555f1d3 (diff) |
ROM titles
Diffstat (limited to 'tools/nitrogfx/font.h')
-rw-r--r-- | tools/nitrogfx/font.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/nitrogfx/font.h b/tools/nitrogfx/font.h new file mode 100644 index 00000000..45086d02 --- /dev/null +++ b/tools/nitrogfx/font.h @@ -0,0 +1,16 @@ +// Copyright (c) 2015 YamaArashi + +#ifndef FONT_H +#define FONT_H + +#include <stdbool.h> +#include "gfx.h" + +void ReadLatinFont(char *path, struct Image *image); +void WriteLatinFont(char *path, struct Image *image); +void ReadHalfwidthJapaneseFont(char *path, struct Image *image); +void WriteHalfwidthJapaneseFont(char *path, struct Image *image); +void ReadFullwidthJapaneseFont(char *path, struct Image *image); +void WriteFullwidthJapaneseFont(char *path, struct Image *image); + +#endif // FONT_H |