blob: 43434b227c3411d58efa15b01e22909d15a8bb3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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 SubtractCoins(u16 toSub);
#endif // GUARD_COINS_H
|