diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/braille_puzzles.h | 4 | ||||
-rw-r--r-- | include/event_scripts.h | 1 | ||||
-rw-r--r-- | include/field_map_obj_helpers.h | 3 | ||||
-rw-r--r-- | include/field_player_avatar.h | 2 | ||||
-rw-r--r-- | include/map_name_popup.h | 2 | ||||
-rw-r--r-- | include/menu.h | 3 |
6 files changed, 14 insertions, 1 deletions
diff --git a/include/braille_puzzles.h b/include/braille_puzzles.h index 780abeeba..d4c5a24d8 100644 --- a/include/braille_puzzles.h +++ b/include/braille_puzzles.h @@ -2,6 +2,10 @@ #define GUARD_BRAILLE_PUZZLES_H bool8 ShouldDoBrailleFlyEffect(void); +bool8 ShouldDoBrailleStrengthEffect(void); +bool8 ShouldDoBrailleDigEffect(void); +void DoBrailleDigEffect(void); void sub_8179918(void); +void sub_8179834(void); #endif // GUARD_BRAILLE_PUZZLES_H diff --git a/include/event_scripts.h b/include/event_scripts.h index 6799b82b4..eb523a487 100644 --- a/include/event_scripts.h +++ b/include/event_scripts.h @@ -388,6 +388,7 @@ extern const u8 BattleFrontier_BattlePyramidEmptySquare_EventScript_252C88[]; extern const u8 FieryPath_EventScript_2908FD[]; extern const u8 EventScript_290CAE[]; extern const u8 EventScript_2926F8[]; +extern const u8 Route111_EventScript_2907F0[]; //player pc extern const u8 LittlerootTown_BrendansHouse_2F_EventScript_1F863F[]; diff --git a/include/field_map_obj_helpers.h b/include/field_map_obj_helpers.h index ae96b67d8..2e9f1d0cc 100644 --- a/include/field_map_obj_helpers.h +++ b/include/field_map_obj_helpers.h @@ -27,6 +27,9 @@ void sub_8098044(u8); void UnfreezeMapObjects(void); void FreezeMapObjectsExceptOne(u8 mapObjectId); void sub_8097B78(u8, u8); +void sub_8098074(u8 var1, u8 var2); void FreezeMapObjects(void); +bool8 FreezeMapObject(struct MapObject *mapObject); + #endif //GUARD_FIELD_MAP_OBJ_HELPERS_H diff --git a/include/field_player_avatar.h b/include/field_player_avatar.h index b31da4062..f616717f2 100644 --- a/include/field_player_avatar.h +++ b/include/field_player_avatar.h @@ -39,5 +39,7 @@ void sub_808BCF4(void); void sub_808D074(u8); void GetXYCoordsOneStepInFrontOfPlayer(s16 *xPtr, s16 *yPtr); u8 GetRivalAvatarGraphicsIdByStateIdAndGender(u8, u8); +void sub_808C114(void); +u8 GetPlayerAvatarGraphicsIdByCurrentState(); #endif // GUARD_FIELD_PLAYER_AVATAR_H diff --git a/include/map_name_popup.h b/include/map_name_popup.h index 8a9043a3f..85d2f0795 100644 --- a/include/map_name_popup.h +++ b/include/map_name_popup.h @@ -7,5 +7,5 @@ // Exported ROM declarations void HideMapNamePopUpWindow(void); - +void ShowMapNamePopup(void); #endif //GUARD_MAP_NAME_POPUP_H diff --git a/include/menu.h b/include/menu.h index 118e8f9a9..888d898b6 100644 --- a/include/menu.h +++ b/include/menu.h @@ -81,5 +81,8 @@ void AddTextPrinterForMessage_2(bool8 allowSkippingDelayWithButtonPress); void RemoveStartMenuWindow(void); void sub_8197948(u8 initialCursorPos); void sub_819A344(u8 a0, u8 *dest, u8 color); +void RemoveMapNamePopUpWindow(void); +u8 GetMapNamePopUpWindowId(void); +u8 AddMapNamePopUpWindow(void); #endif // GUARD_MENU_H |