pokeplatinum/include/applications/pokedex/pokedex_text.h
2025-08-23 14:31:51 -07:00

15 lines
503 B
C

#ifndef POKEPLATINUM_POKEDEX_TEXT_H
#define POKEPLATINUM_POKEDEX_TEXT_H
#include "constants/heap.h"
#include "strbuf.h"
void PokedexText_Free(Strbuf *strbuf);
int PokedexText_ForeignLanguage(int languageIndex);
Strbuf *PokedexText_NameNumber(int species, int language, enum HeapID heapID);
Strbuf *PokedexText_Category(int species, int language, enum HeapID heapID);
Strbuf *PokedexText_DexEntry(int species, int language, int entryOffset, enum HeapID heapID);
#endif // POKEPLATINUM_POKEDEX_TEXT_H