mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-18 03:50:12 -05:00
Some checks are pending
build / build (push) Waiting to run
Changes the type of parameter `palLocation` of `Font_LoadTextPalette`, `Font_LoadScreenIndicatorsPalette` and `FieldMessage_LoadTextPalettes` to `enum PaletteLoadLocation`, and replaces instances of literals passed to these with the appropriate enum variant in already "fully" documented functions.
20 lines
971 B
C
20 lines
971 B
C
#ifndef POKEPLATINUM_FIELD_MESSAGE_H
|
|
#define POKEPLATINUM_FIELD_MESSAGE_H
|
|
|
|
#include "bg_window.h"
|
|
#include "game_options.h"
|
|
#include "graphics.h"
|
|
#include "strbuf.h"
|
|
|
|
void FieldMessage_LoadTextPalettes(enum PaletteLoadLocation palLocation, u32 resetPrinters);
|
|
void FieldMessage_AddWindow(BgConfig *bgConfig, Window *window, u32 bgLayer);
|
|
void FieldMessage_DrawWindow(Window *window, const Options *options);
|
|
void FieldMessage_ClearWindow(Window *window);
|
|
u8 FieldMessage_Print(Window *window, Strbuf *strBuf, const Options *options, u8 canSkipDelay);
|
|
u8 FieldMessage_PrintWithParams(Window *window, Strbuf *strBuf, int fontID, int renderDelay, u8 canSkipDelay, BOOL autoScroll);
|
|
u8 FieldMessage_FinishedPrinting(u8 printerID);
|
|
void FieldMessage_AddSignpostWindow(BgConfig *bgConfig, Window *window, u16 signpostType, u16 bgLayer);
|
|
void FieldMessage_LoadAndDrawSignpost(Window *window, u16 signpostType, u16 signpostNARCMemberIdx);
|
|
|
|
#endif // POKEPLATINUM_FIELD_MESSAGE_H
|