blob: 83ad7d611f8e0d86da92df3a2932a889384ce97f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef GUARD_COINS_H
#define GUARD_COINS_H
#include "global.h"
void PrintCoinsString(u32 coinAmount);
void ShowCoinsWindow(u32 coinAmount, u8 x, u8 y);
void HideCoinsWindow(void);
u16 GetCoins(void);
void SetCoins(u16 coinAmount);
bool8 GiveCoins(u16 toAdd);
bool8 TakeCoins(u16 toSub);
#endif // GUARD_COINS_H
|