mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-22 02:05:55 -05:00
15 lines
440 B
C
15 lines
440 B
C
#ifndef POKEPLATINUM_MESSAGE_UTIL_H
|
|
#define POKEPLATINUM_MESSAGE_UTIL_H
|
|
|
|
#include "message.h"
|
|
#include "strbuf.h"
|
|
#include "string_template.h"
|
|
|
|
#define EXPANDED_STRING_SIZE 1024
|
|
|
|
Strbuf *MessageUtil_ExpandedStrbuf(StringTemplate *template, MessageLoader *loader, u32 entryID, u32 heapID);
|
|
Strbuf *MessageUtil_MoveName(u32 moveID, u32 heapID);
|
|
Strbuf *MessageUtil_SpeciesName(u32 species, u32 heapID);
|
|
|
|
#endif // POKEPLATINUM_MESSAGE_UTIL_H
|