pokeheartgold/include/gear_phone.h
2022-04-12 15:28:04 -04:00

25 lines
405 B
C

#ifndef POKEHEARTGOLD_GEAR_PHONE_H
#define POKEHEARTGOLD_GEAR_PHONE_H
#include "heap.h"
typedef struct PhoneBookEntry {
u8 unk0;
u8 unk1;
u8 unk2;
u8 trainerClass;
u16 trainerId;
u16 unk6;
u16 gift;
u8 unkA[5];
u8 unkF;
u8 unk10[4];
} PhoneBookEntry;
struct PhoneBook {
int count;
struct PhoneBookEntry * entries;
};
#endif //POKEHEARTGOLD_GEAR_PHONE_H