2017-10-12 08:06:19 +01:00
|
|
|
#ifndef GUARD_FIELD_MESSAGE_BOX_H
|
|
|
|
#define GUARD_FIELD_MESSAGE_BOX_H
|
|
|
|
|
2018-10-13 18:41:10 +01:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
FIELD_MESSAGE_BOX_HIDDEN,
|
|
|
|
FIELD_MESSAGE_BOX_UNUSED,
|
|
|
|
FIELD_MESSAGE_BOX_NORMAL,
|
|
|
|
FIELD_MESSAGE_BOX_AUTO_SCROLL,
|
|
|
|
};
|
|
|
|
|
2017-10-12 08:06:19 +01:00
|
|
|
bool8 ShowFieldMessage(const u8 *message);
|
2020-06-03 23:25:16 +01:00
|
|
|
bool8 ShowPokenavFieldMessage(const u8 *message);
|
|
|
|
bool8 ShowFieldMessageFromBuffer(void);
|
2017-10-12 08:06:19 +01:00
|
|
|
bool8 ShowFieldAutoScrollMessage(const u8 *message);
|
|
|
|
void HideFieldMessageBox(void);
|
|
|
|
bool8 IsFieldMessageBoxHidden(void);
|
2018-10-13 18:41:10 +01:00
|
|
|
u8 GetFieldMessageBoxMode(void);
|
2020-06-03 23:25:16 +01:00
|
|
|
void StopFieldMessage(void);
|
2019-02-08 17:48:51 +00:00
|
|
|
void InitFieldMessageBox(void);
|
2017-10-12 08:06:19 +01:00
|
|
|
|
2024-07-16 06:33:31 +01:00
|
|
|
extern u8 gWalkAwayFromSignpostTimer;
|
2021-04-01 16:45:17 +01:00
|
|
|
|
2017-10-12 08:06:19 +01:00
|
|
|
#endif // GUARD_FIELD_MESSAGE_BOX_H
|