mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
23 lines
559 B
C
23 lines
559 B
C
#ifndef GUARD_FIELD_MESSAGE_BOX_H
|
|
#define GUARD_FIELD_MESSAGE_BOX_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 sub_8098238(const u8 *message);
|
|
bool8 sub_80982B8(void);
|
|
bool8 ShowFieldAutoScrollMessage(const u8 *message);
|
|
void HideFieldMessageBox(void);
|
|
bool8 IsFieldMessageBoxHidden(void);
|
|
u8 GetFieldMessageBoxMode(void);
|
|
void sub_8098374(void);
|
|
void InitFieldMessageBox(void);
|
|
|
|
#endif // GUARD_FIELD_MESSAGE_BOX_H
|