diff options
author | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2016-12-01 03:51:24 +0100 |
---|---|---|
committer | YamaArashi <YamaArashi@users.noreply.github.com> | 2016-11-30 18:51:24 -0800 |
commit | 4258e60771aa9fdabd678930eca534423bd371b8 (patch) | |
tree | ecca2ee7641abc0562f39b6c7dd907af2184e102 /include/coins.h | |
parent | 831f8cd4fd94613d6b52d87df1b4903bedfaa717 (diff) |
Declare more non-static functions in header files (#111)
* Declare more non-static functions in header files
* Use `(void)` for functions without arguments.
* Move global-included data to seperate headers
* Don't import types or global in header
* Fix fieldmap imports
* Revert in-code changes
* Add missing newlines
Diffstat (limited to 'include/coins.h')
-rw-r--r-- | include/coins.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/coins.h b/include/coins.h new file mode 100644 index 000000000..d066c2422 --- /dev/null +++ b/include/coins.h @@ -0,0 +1,12 @@ +#ifndef GUARD_COINS_H +#define GUARD_COINS_H + +void UpdateCoinsWindow(s32 a, u8 b, u8 c); +void ShowCoinsWindow(u32 a, u8 b, u8 c); +void HideCoinsWindow(u8 a, u8 b); +void PrintCoins(s32 a, u8 b, u8 c, u8 d); +u16 GetCoins(void); +bool8 GiveCoins(u16 coins); +bool8 TakeCoins(u16 coins); + +#endif // GUARD_COINS_H |