mirror of
https://github.com/pret/pokefirered.git
synced 2026-04-17 23:23:43 -05:00
31 lines
571 B
C
31 lines
571 B
C
#ifndef GUARD_PLAYER_PC_H
|
|
#define GUARD_PLAYER_PC_H
|
|
|
|
#include "global.h"
|
|
#include "list_menu.h"
|
|
|
|
// Exported type declarations
|
|
|
|
struct PlayerPCItemPageStruct
|
|
{
|
|
u16 cursorPos;
|
|
u16 itemsAbove;
|
|
u8 pageItems;
|
|
u8 count;
|
|
u8 filler_6[3];
|
|
u8 unk_9;
|
|
u8 scrollIndicatorId;
|
|
u8 filler_B[5];
|
|
};
|
|
|
|
// Exported RAM declarations
|
|
extern struct PlayerPCItemPageStruct gPlayerPcMenuManager;
|
|
|
|
// Exported ROM declarations
|
|
|
|
void sub_816B060(u8 taskId);
|
|
void NewGameInitPCItems(void);
|
|
void Mailbox_ReturnToMailListAfterDeposit(void);
|
|
|
|
#endif //GUARD_PLAYER_PC_H
|