mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2025-02-22 04:04:15 +01:00
10 lines
271 B
C
10 lines
271 B
C
#ifndef GUARD_POKEMON_STORAGE_SYSTEM_H
|
|
#define GUARD_POKEMON_STORAGE_SYSTEM_H
|
|
|
|
u8* GetBoxNamePtr(u8 boxNumber);
|
|
struct BoxPokemon *GetBoxedMonPtr(u8, u8);
|
|
void SetBoxMonNickFromAnyBox(u8, u8, u8 *);
|
|
void CompactPartySlots(void);
|
|
|
|
#endif // GUARD_POKEMON_STORAGE_SYSTEM_H
|