Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

CSC112 Spring 2016 Examples

2370 views
1
#ifndef Clock_h
2
#define Clock_h
3
4
#include "NumberDisplays.h"
5
#include "int.h"
6
7
class GameGrid;
8
9
class Clock : public NumberDisplays {
10
11
public:
12
13
virtual int reset();
14
15
virtual int getNumber();
16
17
public:
18
int score;
19
int lastUpdate;
20
21
public:
22
23
/**
24
* @element-type GameGrid
25
*/
26
GameGrid *myGameGrid;
27
};
28
29
#endif // Clock_h
30
31