mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
21 lines
769 B
C
21 lines
769 B
C
// Copyright (c) 2015 YamaArashi
|
|
|
|
#ifndef FONT_H
|
|
#define FONT_H
|
|
|
|
#include <stdbool.h>
|
|
#include "gfx.h"
|
|
#include "options.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);
|
|
void ReadNtrFont(char *path, struct Image *image, struct NtrFontMetadata *metadata, bool useSubscreenPalette);
|
|
void WriteNtrFont(char *path, struct Image *image, struct NtrFontMetadata *metadata);
|
|
void FreeNtrFontMetadata(struct NtrFontMetadata *metadata);
|
|
|
|
#endif // FONT_H
|