blob: 6190ebbab5db1b1111202f31f6dc0e2e432e5677 (
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 RemoveCoins(u16 toSub);
#endif // GUARD_COINS_H
|