You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
238 B

#ifndef _COIN_H
#define _COIN_H
class Coin {
public:
Coin(void);
void setup(void);
int getMoney(void);
int isMoneyInserted(void);
void setZero(void);
void subtractMoney(int);
private:
};
#endif /* _COIN_H */