mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-24 06:57:36 -05:00
26 lines
483 B
C
26 lines
483 B
C
#ifndef POKEPLATINUM_STRUCT_PC_MON_PREVIEW_H
|
|
#define POKEPLATINUM_STRUCT_PC_MON_PREVIEW_H
|
|
|
|
#include "strbuf.h"
|
|
|
|
typedef struct {
|
|
void *mon;
|
|
u16 species;
|
|
u16 heldItem;
|
|
u16 dexNum;
|
|
u8 level;
|
|
u8 markings;
|
|
u8 type1;
|
|
u8 type2;
|
|
u8 gender;
|
|
u8 isEgg;
|
|
u8 padding_10[4];
|
|
Strbuf *nickname;
|
|
Strbuf *speciesName;
|
|
Strbuf *heldItemName;
|
|
Strbuf *nature;
|
|
Strbuf *ability;
|
|
} PCMonPreview;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_PC_MON_PREVIEW_H
|