mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 11:37:40 +01:00
13 lines
295 B
C
13 lines
295 B
C
#ifndef GUARD_COINS_H
|
|
#define GUARD_COINS_H
|
|
|
|
void PrintCoinsString(u32 coinAmount);
|
|
void ShowCoinsWindow(u32 coinAmount, u8 x, u8 y);
|
|
void HideCoinsWindow(void);
|
|
u16 GetCoins(void);
|
|
void SetCoins(u16 coinAmount);
|
|
bool8 AddCoins(u16 toAdd);
|
|
bool8 RemoveCoins(u16 toSub);
|
|
|
|
#endif // GUARD_COINS_H
|