mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-31 20:43:00 -05:00
27 lines
426 B
C
27 lines
426 B
C
#ifndef POKEHEARTGOLD_GEAR_PHONE_H
|
|
#define POKEHEARTGOLD_GEAR_PHONE_H
|
|
|
|
struct PhoneBookEntry {
|
|
u8 unk0;
|
|
u8 unk1;
|
|
u8 unk2;
|
|
u8 unk3;
|
|
u16 trainerId;
|
|
u16 unk6;
|
|
u8 unk8[7];
|
|
u8 unkF;
|
|
u8 unk10[4];
|
|
};
|
|
|
|
struct PhoneBook {
|
|
u32 count;
|
|
struct PhoneBookEntry * entries;
|
|
};
|
|
|
|
struct UnkFsysSub_114 {
|
|
u8 filler_00[0x1C];
|
|
struct PhoneBookEntry entry;
|
|
};
|
|
|
|
#endif //POKEHEARTGOLD_GEAR_PHONE_H
|