mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-06-01 05:01:11 -05:00
25 lines
405 B
C
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
|