2017-11-04 00:59:29 +00:00
|
|
|
#ifndef GUARD_RECORD_MIXING_H
|
|
|
|
#define GUARD_RECORD_MIXING_H
|
|
|
|
|
|
|
|
// Exported type declarations
|
|
|
|
|
|
|
|
struct DayCareMailRecordMixing {
|
|
|
|
struct MailStruct mail;
|
|
|
|
u8 OT_name[OT_NAME_LENGTH + 1];
|
|
|
|
u8 monName[11];
|
|
|
|
u8 language_maybe : 4;
|
|
|
|
u8 unknown : 4;
|
|
|
|
u32 stepsTaken;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Exported RAM declarations
|
|
|
|
|
|
|
|
// Exported ROM declarations
|
|
|
|
|
2017-11-04 02:26:12 +00:00
|
|
|
void sub_80E8260(void *);
|
|
|
|
|
2017-11-04 00:59:29 +00:00
|
|
|
#endif //GUARD_RECORD_MIXING_H
|