diff options
author | xenonnsmb <xenonnsmb@users.noreply.github.com> | 2017-12-03 19:55:01 -0600 |
---|---|---|
committer | xenonnsmb <xenonnsmb@users.noreply.github.com> | 2017-12-03 19:55:01 -0600 |
commit | e649e3d2481faef109006b9157eeb22e1bff9fe2 (patch) | |
tree | 3348ffb6bbe7358a4082059960ef6bea8cf7e636 /tools/gbagfx/font.h | |
parent | eeaa59d8376045ddf008276e6c13c860f23eedaa (diff) |
adding tools from pokeruby
Diffstat (limited to 'tools/gbagfx/font.h')
-rw-r--r-- | tools/gbagfx/font.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/gbagfx/font.h b/tools/gbagfx/font.h new file mode 100644 index 000000000..45086d02a --- /dev/null +++ b/tools/gbagfx/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 |