blob: f628359118ce6b31ce48cf90a72a26024c669911 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#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
|