mirror of
https://github.com/pret/pmd-red.git
synced 2024-11-23 21:19:53 +00:00
fd8720b75c
* label all entities in cutscenes * remove commented func.. wasn't matching anyway * Skarmony -> Skarmory
33 lines
606 B
C
33 lines
606 B
C
#ifndef GUARD_MAILBOX_H
|
|
#define GUARD_MAILBOX_H
|
|
|
|
#include "menu.h"
|
|
#include "text.h"
|
|
#include "constants/mailbox.h"
|
|
|
|
struct unkStruct_203B304
|
|
{
|
|
// size: 0xB6 << 1
|
|
u32 state;
|
|
u32 fallbackState;
|
|
u8 unk8;
|
|
u8 mailIndex;
|
|
u8 fillA[0xC - 0xA];
|
|
u32 unkC;
|
|
u8 fill10[0x50 - 0x10];
|
|
u8 unk50;
|
|
u8 fill51[0x64 - 0x51];
|
|
u32 unk64;
|
|
u32 unk68;
|
|
u32 unk6C;
|
|
u8 fill70[0xBC - 0x70];
|
|
struct MenuItem unkBC[8];
|
|
u16 unkFC[8];
|
|
struct UnkTextStruct2 unk10C[4];
|
|
};
|
|
|
|
extern void SetMailboxState(u32);
|
|
extern s32 GetNumAcceptedJobs(void);
|
|
|
|
#endif // GUARD_MAILBOX_H
|