mirror of
https://github.com/pret/pokefirered.git
synced 2026-04-25 15:28:53 -05:00
17 lines
337 B
C
17 lines
337 B
C
#ifndef GUARD_POKEDEX_AREA_MARKERS_H
|
|
#define GUARD_POKEDEX_AREA_MARKERS_H
|
|
|
|
struct PAM_TaskData
|
|
{
|
|
struct SubspriteTable subsprites;
|
|
void * buffer;
|
|
u8 unk_0C;
|
|
u8 spr_id;
|
|
u16 tilesTag;
|
|
u16 unk_10;
|
|
};
|
|
|
|
void SetAreaSubsprite(s32 i, s32 whichArea, struct Subsprite * subsprites);
|
|
|
|
#endif //GUARD_POKEDEX_AREA_MARKERS_H
|