mirror of
https://github.com/dimoniche/solarium.vlad.git
synced 2026-01-30 13:03:30 +03:00
16 lines
315 B
C
16 lines
315 B
C
#ifndef _COIN_H_
|
|
#define _COIN_H_
|
|
|
|
|
|
#define COIN_IMP_MIN_LEN 2200 // ìñ/100
|
|
#define COIN_IMP_MAX_LEN 9000 // ìñ/100
|
|
|
|
|
|
extern void InitCoin(void);
|
|
extern CPU_INT32U GetCoinCount(void);
|
|
extern CPU_INT32U GetResetCoinCount(void);
|
|
extern void CoinDisable(void);
|
|
extern void CoinEnable(void);
|
|
|
|
#endif //#ifndef _COIN_H_
|