mirror of
https://github.com/pret/pokeruby.git
synced 2024-12-12 15:17:27 +00:00
4258e60771
* 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
13 lines
306 B
C
13 lines
306 B
C
#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
|