mirror of
https://github.com/pret/pokefirered.git
synced 2026-04-24 14:57:07 -05:00
10 lines
255 B
C
10 lines
255 B
C
#ifndef GUARD_BERRY_POWDER_H
|
|
#define GUARD_BERRY_POWDER_H
|
|
|
|
u32 GetBerryPowder(void);
|
|
void SetBerryPowder(u32 *powder, u32 amount);
|
|
void ApplyNewEncryptionKeyToBerryPowder(u32 newKey);
|
|
bool8 GiveBerryPowder(u32 amountToAdd);
|
|
|
|
#endif //GUARD_BERRY_POWDER_H
|