mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-06 22:28:44 -05:00
13 lines
419 B
C
13 lines
419 B
C
#ifndef GUARD_UNK_TEXT_UTIL_H
|
|
#define GUARD_UNK_TEXT_UTIL_H
|
|
|
|
#include "global.h"
|
|
|
|
void DynamicPlaceholderTextUtil_Reset(void);
|
|
void DynamicPlaceholderTextUtil_SetPlaceholderPtr(u8 idx, const u8 *ptr);
|
|
u8 *DynamicPlaceholderTextUtil_ExpandPlaceholders(u8 *dest, const u8 *src);
|
|
const u8 *DynamicPlaceholderTextUtil_GetPlaceholderPtr(u8 idx);
|
|
u8 GetColorFromTextColorTable(u16 graphicId);
|
|
|
|
#endif //GUARD_UNK_TEXT_UTIL_H
|