mirror of
https://github.com/pret/pokefirered.git
synced 2026-04-21 08:57:20 -05:00
21 lines
493 B
C
21 lines
493 B
C
#ifndef GUARD_FIELD_MESSAGE_BOX_H
|
|
#define GUARD_FIELD_MESSAGE_BOX_H
|
|
|
|
#include "global.h"
|
|
|
|
enum {
|
|
FIELD_MESSAGE_BOX_HIDDEN,
|
|
FIELD_MESSAGE_BOX_UNUSED,
|
|
FIELD_MESSAGE_BOX_NORMAL,
|
|
FIELD_MESSAGE_BOX_AUTO_SCROLL,
|
|
};
|
|
|
|
bool8 ShowFieldMessage(const u8 *message);
|
|
bool8 ShowFieldAutoScrollMessage(const u8 *message);
|
|
void HideFieldMessageBox(void);
|
|
bool8 IsFieldMessageBoxHidden(void);
|
|
u8 GetFieldMessageBoxType(void);
|
|
void InitFieldMessageBox(void);
|
|
|
|
#endif // GUARD_FIELD_MESSAGE_BOX_H
|