diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2017-09-09 14:24:18 +0200 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2017-09-09 14:24:18 +0200 |
commit | 3355389eab7e689ec1bbabe941303b478f6457af (patch) | |
tree | 0d23cdf093e54abd4d189930856dda78d90c101c /include/coins.h | |
parent | 307278374b57d11b85b419df9ac994967781657b (diff) |
start coins decomp
Diffstat (limited to 'include/coins.h')
-rw-r--r-- | include/coins.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/coins.h b/include/coins.h index 0cfd3db6a..43434b227 100644 --- a/include/coins.h +++ b/include/coins.h @@ -1,6 +1,12 @@ #ifndef GUARD_COINS_H #define GUARD_COINS_H -void SetCoins(u16 newValue); +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 |