mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-08-16 22:30:56 -05:00
Some checks are pending
build / build (push) Waiting to run
Co-authored-by: Rachel <rachel@lhea.me>
31 lines
613 B
C
31 lines
613 B
C
#ifndef POKEPLATINUM_STRUCT_DAYCARE_H
|
|
#define POKEPLATINUM_STRUCT_DAYCARE_H
|
|
|
|
#include "constants/daycare.h"
|
|
|
|
#include "struct_defs/pokemon.h"
|
|
|
|
#include "mail.h"
|
|
|
|
typedef struct DaycareMail {
|
|
Mail mail;
|
|
u16 otName[TRAINER_NAME_LEN + 1];
|
|
u16 monName[MON_NAME_LEN + 1];
|
|
u8 unk_5E_0 : 4;
|
|
u8 unk_5E_4 : 4;
|
|
} DaycareMail;
|
|
|
|
typedef struct DaycareMon {
|
|
BoxPokemon boxMon;
|
|
DaycareMail daycareMail;
|
|
u32 steps;
|
|
} DaycareMon;
|
|
|
|
typedef struct Daycare {
|
|
DaycareMon mons[NUM_DAYCARE_MONS];
|
|
u32 offspringPersonality;
|
|
u8 stepCounter;
|
|
} Daycare;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_DAYCARE_H
|